From 3510ff39fb9a2b50e399d722e0d35b95a142425c Mon Sep 17 00:00:00 2001 From: Nick Yeoman Date: Sat, 27 Jun 2026 08:14:29 -0700 Subject: [PATCH] add tool-capable models to config.json --- opencode/config/config.json | 40 +++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/opencode/config/config.json b/opencode/config/config.json index dfe6cac..3c48ffb 100644 --- a/opencode/config/config.json +++ b/opencode/config/config.json @@ -8,6 +8,14 @@ "baseURL": "http://localhost:11434/v1" }, "models": { + "qwen3:8b": { + "name": "Qwen3 8B", + "tools": true, + "limit": { + "context": 32768, + "output": 8192 + } + }, "qwen3:8b-16k": { "name": "Qwen3 8B (16k UI-Context)", "tools": true, @@ -15,6 +23,38 @@ "context": 16384, "output": 8192 } + }, + "qwen2.5:7b": { + "name": "Qwen2.5 7B", + "tools": true, + "limit": { + "context": 32768, + "output": 8192 + } + }, + "mistral:latest": { + "name": "Mistral 7B", + "tools": true, + "limit": { + "context": 32768, + "output": 4096 + } + }, + "mistral-small3.2:latest": { + "name": "Mistral Small 3.2", + "tools": true, + "limit": { + "context": 131072, + "output": 8192 + } + }, + "llama3.1:8b": { + "name": "Llama 3.1 8B", + "tools": true, + "limit": { + "context": 131072, + "output": 8192 + } } } }