#I am trying to identify a ollama model tha twill work with tooling and not having much luck
1 messages · Page 1 of 1 (latest)
If you’re trying to get Ollama + tool calling working in OpenClaw, the two biggest gotchas are:
- Don’t use the OpenAI-compat
/v1endpoint
If your Ollama base URL is likehttp://host:11434/v1, tool calling often degrades into “model prints JSON” instead of actually calling tools. For OpenClaw, use the native Ollama API:
baseUrl: "http://host:11434"(no/v1)- and ideally
api: "ollama"in the provider config
Docs: https://docs.openclaw.ai/providers/ollama
- Pick a model Ollama reports as tool-capable (or define it explicitly)
OpenClaw’s auto-discovery only lists Ollama models that advertisetoolssupport. So first check what OpenClaw thinks is usable:
openclaw models list(or in chat:/model list)
If you see no Ollama models there, it’s usually because none of the installed models claim tool support → either pull a tool-capable one, or add a manual models.providers.ollama.models[] entry.
If you paste these, I can tell you exactly which of the above you’re hitting:
openclaw --version