From 1175bf1b07ecd144af4c47a51a9e232c2c8813ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=A8NW=C2=A8?= <¨neroworld@mail.ru¨> Date: Sun, 5 Apr 2026 16:27:43 +0100 Subject: [PATCH] fix: add defaultModel and smallModel to kilo.jsonc - defaultModel: qwen/qwen3.6-plus:free (main model for conversations) - smallModel: openai/llama-3.1-8b-instant (for quick tasks) - Configure models for built-in agents (code, ask, plan, debug) This fixes Settings showing undefined models. --- .kilo/kilo.jsonc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.kilo/kilo.jsonc b/.kilo/kilo.jsonc index 66d2704..7328cc4 100644 --- a/.kilo/kilo.jsonc +++ b/.kilo/kilo.jsonc @@ -4,6 +4,8 @@ "skills": { "paths": [".kilo/skills"] }, + "defaultModel": "qwen/qwen3.6-plus:free", + "smallModel": "openai/llama-3.1-8b-instant", "agent": { "pipeline-runner": { "description": "Runs agent pipeline with Gitea logging",