Hi everyone! I'm trying to set up Codeium to use a local model on my machine instead of the cloud-based one. I've downloaded a model file, but I can't figure out how to point Codeium to it.
I saw some references to a `--local` flag or a config file in the docs, but they weren't very beginner-friendly. Could someone explain the steps in a simple way? Maybe with an example config or command? Thanks so much in advance! 😊
For the CLI version, you should use the `--local` flag and point it to your model's directory. The command usually looks something like:
```bash
codeium --local /path/to/your/model/folder
```
If you're using the VS Code extension, it's trickier. You'll need to set the `codeium.localModel` config in your settings.json. You can find its location by checking the extension's documentation. I had to specify the exact path to the model file itself there, not just the folder.
Did you download one of the GGUF format models? Those are the ones I've had success with locally.
if it's manual, it's wrong