Replies: 1 comment
|
This looks much more like an environment/init failure than a model-quality or prompt issue. On Linux, exit code A quick sanity pass from the same shell/user that starts which ollama
ollama --version
ollama list
ollama run <exact-model-name-from-wayland-config>
curl http://127.0.0.1:11434/api/tagsThe “exact model name” part matters here. Ollama is pretty literal about tags. For example, if The other common gotcha is that If Docker or any container boundary is involved, also check the host address. # from wherever wayland/wcore runs
curl http://127.0.0.1:11434/api/tagsIf that fails from the One separate possibility: agent mode may require capabilities that the selected local model/tag does not support well, such as tool calling or structured output. That usually shows up as a model/provider error rather than The most useful details to narrow this down would be: My bet is either an Ollama binary/path visibility issue or a mismatch between the configured model name and the actual Ollama tag. The fact that Claude works is a good clue: the app can start an agent in general, but the local Ollama provider path is failing very early. If my answer solved your problem, you can click answered the question. I'm really here to help, and along the way I'm also collecting Galaxy Brain badges haha 😆 |
Uh oh!
There was an error while loading. Please reload this page.
I'm not putting this in as a bug because I sincerely believe it's user error.
I've installed wayland on a DGX Spark, and trying to run models through Ollama. They seem to be installed properly.
I have Claude working fine when I start a chat, but both Qwen 3.5 and Llama 3.1 9B give the error "Agent failed to start: wcore exited with code 127 during init"
Any ideas?
All reactions