Replies: 1 comment
-
|
What you are seeing is expected if the model is only emitting JSON text. Continue will not execute arbitrary JSON blobs from chat output as file actions. For file creation/editing you need the agent/tool path, and with Ollama that usually means both:
The Continue docs call out that Agent mode with Ollama depends on tool support, and the Ollama config page shows So the rough rule is:
If you want, post your |
Beta Was this translation helpful? Give feedback.
0 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 use Continue.dev with a local model (Ollama) to create and edit files automatically based on LLM responses.
However, when the model returns structured JSON indicating a file creation action, Continue does not execute it. Instead, it treats the response as plain text JSOIN
{ "name": "create_new_file", "arguments": { "filepath": "./teste.py", "contents": "" } }Beta Was this translation helpful? Give feedback.
All reactions