What local models is everyone using? The last one I used was Llama 3.1 8B which was pretty good (I have an old laptop). Has there been any major development since then?
Forget ChatGPT: why researchers now run small AIs on their laptops
321–330 of 385 posts
Re: Forget ChatGPT: why researchers now run small AIs on their laptops
#322Has anybody found a good way to utilize ollama with an editor such as zed to do things like "generate rustdoc to this method" etc. I use ollama daily for a ton of things, but for code generation, completion and documentation 4o is still much better than any of the local models...
Generate documentation in Rust format for use in code.
/// An enum representing possible errors during CRUD operations.
#[derive(Error, Debug)]
enum CrudError {
/// Indicates an error occurred while interacting with the SQLite database.
///
/// This variant wraps a `rusqlite::Error`, providing details about the specific SQLite error.
#[error("SQLite error: {0}")]
SqliteError(rusqlite::Error),
/// Indicates an error related to input/output operations.
///
/// This variant wraps a `std::io::Error`, giving information about the specific IO problem encountered.
#[error("IO error: {0}")]
IoError(std::io::Error),
}Re: Forget ChatGPT: why researchers now run small AIs on their laptops
#323Earlier quoted context omitted.
> and some of the most popular extensions are only available with VSCode, not with Codium Which is an artificial restriction from MS that's really easily bypassed. Personally I don't care whether the telemetry is identifiable. I just don't want it.
How is it bypassed?
Re: Forget ChatGPT: why researchers now run small AIs on their laptops
#324Earlier quoted context omitted.
Button-toggled voice notes in the iPhone Notes app are a godsend for taking measurements. Rather than switching your hands between probe/equipment and notes repeatedly, which sucks badly, you can just dictate your readings and maaaaybe clean out something someone said in the background. Over the last decade, the microphones + speech recognition became Good Enough for this. Wake-word/endpoint models still aren't there…
> Button-toggled voice notes in the iPhone Notes app Is this a physical button or on-screen? I’ve been rewatching Twin Peaks recently and would love a high-tech implementation of Cooper’s tape recorder.
Re: Forget ChatGPT: why researchers now run small AIs on their laptops
#325Earlier quoted context omitted.
It is true that VS Code has some non-optional telemetry, and if VS Codium works for people, that is great. However, the telemetry of VSCode is non-personal metrics, and some of the most popular extensions are only available with VSCode, not with Codium.
From the documentation ( https://code.visualstudio.com/docs/getstarted/telemetry ) it seems there is a supported way to completely turn off telemetry. Is there something else in VSCode that doesn't respect this setting?
> extensions may be collecting their own usage data and are not controlled by the telemetry.telemetryLevel setting. Consult the specific extension's documentation to learn about its telemetry reporting and whether it can be disabled.
Re: Forget ChatGPT: why researchers now run small AIs on their laptops
#326I narrate notes to myself on my morning walks[1] and then run whisper locally to turn the audio into text... before having an LLM clean up my ramblings into organized notes and todo lists. I have it pretty much all local now, but I don't mind waiting a few extra seconds for it to process since it's once a day. I like the privacy because I was never comfortable telling my entire life to a remote AI company. [1] It fee…
For people on macOS, the free app Aiko on the App Store makes it easy to use Whisper, if you want a GUI: https://sindresorhus.com/aiko
As a daily user of all the latest OpenAI/Claude models for the last few years, I'm amazed at how good llama3.1 is - all running locally, privately, with zero connection to the web. How did I not know about this?!
Re: Forget ChatGPT: why researchers now run small AIs on their laptops
#327Earlier quoted context omitted.
I dropped VSCode when I found out that the remote editing and language server extensions were both proprietary. Back to vim and sorry I strayed.
Jetbrains is pretty ok on this front. I've been enjoying using my beefy computer to do work from my potato laptop.
Re: Forget ChatGPT: why researchers now run small AIs on their laptops
#328Earlier quoted context omitted.
If you're gonna go with a VS code extension and you're aiming for privacy, then I would at least recommend using the open source fork VS Codium. https://vscodium.com/
It is true that VS Code has some non-optional telemetry, and if VS Codium works for people, that is great. However, the telemetry of VSCode is non-personal metrics, and some of the most popular extensions are only available with VSCode, not with Codium.
Re: Forget ChatGPT: why researchers now run small AIs on their laptops
#329I narrate notes to myself on my morning walks[1] and then run whisper locally to turn the audio into text... before having an LLM clean up my ramblings into organized notes and todo lists. I have it pretty much all local now, but I don't mind waiting a few extra seconds for it to process since it's once a day. I like the privacy because I was never comfortable telling my entire life to a remote AI company. [1] It fee…
Re: Forget ChatGPT: why researchers now run small AIs on their laptops
#330Earlier quoted context omitted.
It is true that VS Code has some non-optional telemetry, and if VS Codium works for people, that is great. However, the telemetry of VSCode is non-personal metrics, and some of the most popular extensions are only available with VSCode, not with Codium.
From the documentation ( https://code.visualstudio.com/docs/getstarted/telemetry ) it seems there is a supported way to completely turn off telemetry. Is there something else in VSCode that doesn't respect this setting?
They must have reintroduced the telemetry setting. I can't remember if I deleted the old one, but my setting on that new value was set to "all" by default.