CLI not reading config block directories or per-project configs #7699
Unanswered
bdeggleston
asked this question in
Help
Replies: 1 comment 3 replies
-
Hey @bdeggleston, sorry to hear of the issues. I can share my config that works with local models ollama. If you don't mind sharing yours i'd be happy to help, I just need more information to understand. ![]() note autodetect does not work currently and you need to be explicit in the models you'd like to use. name: Continue Config
version: 0.0.1
context:
- provider: diff
- provider: currentFile
- provider: docs
- provider: terminal
- provider: url
models:
- name: qwen2.5-coder:14b
provider: ollama
model: qwen2.5-coder:14b
roles:
- chat
- edit
- apply
- autocomplete
capabilities:
- tool_use
- name: gpt-oss
model: gpt-oss:20b
provider: ollama
roles:
- chat
- edit
- apply
- autocomplete
capabilities:
- tool_use
- name: Autodetect
provider: ollama
model: AUTODETECT
roles:
- chat
- edit
- apply
- rerank
- autocomplete |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I’m trying to setup continue.dev CLI with global and per-project configs using the yaml docs, and am having a hell of a time getting it working. It’s picking up
~/.continue/config.yaml
and the models I’ve defined there no problem, but per-project configs (<project_dir>/.continue/config.yaml) or per-project agents (<project_dir>/.continue/agents/cassandra.yaml) seem to be completely ignored. I’m on the most recent version (1.4.38), and am not seeing any complaints in the debug logs. Any tips or tricks for getting this working properly?Beta Was this translation helpful? Give feedback.
All reactions