From 63c238c65018e9ceb398c67b7f13474f6a2f7ca6 Mon Sep 17 00:00:00 2001 From: Mathias Bergqvist Date: Wed, 22 Apr 2026 16:34:53 +0200 Subject: [PATCH] fix(config): update model names to match LiteLLM host/name format Replace ollama/ prefix with iguana/ and koala/ prefixes to match actual model IDs exposed by LiteLLM on this cluster. Co-Authored-By: Claude Sonnet 4.6 --- config/models.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/config/models.yaml b/config/models.yaml index 80a3014..949f94a 100644 --- a/config/models.yaml +++ b/config/models.yaml @@ -1,25 +1,26 @@ # Model selection — first entry per skill is used. # Override per-call by passing model in the MCP tool args. +# Model names come from LiteLLM /v1/models (host/name format). default_chain: - - ollama/qwen3-coder-30b-tuned + - iguana/qwen3-coder-next skills: tdd: chain: - - ollama/qwen3-coder-30b-tuned + - koala/qwen3-coder-30b review: chain: - - ollama/devstral-tuned + - iguana/devstral debug: chain: - - ollama/deepseek-r1-tuned + - iguana/deepseek-r1-14b spec: chain: - - ollama/phi4 + - koala/phi4-14b retrospective: chain: - - ollama/qwen3-coder-30b-tuned + - iguana/qwen3-coder-next trainer: chain: - - ollama/qwen3-coder-30b-tuned + - iguana/qwen3-coder-next