From 5f21ad41300d28ccdf54123266a21fbac78991e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=A8NW=C2=A8?= <¨neroworld@mail.ru¨> Date: Sun, 5 Apr 2026 16:21:37 +0100 Subject: [PATCH] fix: configure default models for built-in Kilo Code agents - code: ollama-cloud/qwen3-coder:480b (coding tasks) - ask: qwen/qwen3.6-plus:free (codebase questions) - plan: ollama-cloud/nemotron-3-super (task planning) - debug: ollama-cloud/gpt-oss:20b (bug diagnostics) This fixes the issue where default models were not set in Settings. --- .kilo/kilo.jsonc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.kilo/kilo.jsonc b/.kilo/kilo.jsonc index 076cf7a..66d2704 100644 --- a/.kilo/kilo.jsonc +++ b/.kilo/kilo.jsonc @@ -14,6 +14,22 @@ "bash": "allow", "task": "allow" } + }, + "code": { + "model": "ollama-cloud/qwen3-coder:480b", + "description": "Primary code writer. Full tool access for development tasks." + }, + "ask": { + "model": "qwen/qwen3.6-plus:free", + "description": "Read-only Q&A agent for codebase questions." + }, + "plan": { + "model": "ollama-cloud/nemotron-3-super", + "description": "Task planner. Creates detailed implementation plans." + }, + "debug": { + "model": "ollama-cloud/gpt-oss:20b", + "description": "Bug diagnostics and troubleshooting." } } } \ No newline at end of file