From 07329abb0b0c5fa7a9e0f1d82cb6195c80e9f1dc Mon Sep 17 00:00:00 2001 From: yongrean <78528865+k08200@users.noreply.github.com> Date: Fri, 6 Mar 2026 14:30:26 +0900 Subject: [PATCH] chore: update example config for OpenRouter + Claude models - Remove ollama config, add OpenRouter LLM comments - Update model defaults: anthropic/claude-sonnet-4-5 --- config/nightbot.example.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/config/nightbot.example.yaml b/config/nightbot.example.yaml index 9b499b1..2307291 100644 --- a/config/nightbot.example.yaml +++ b/config/nightbot.example.yaml @@ -1,10 +1,12 @@ -ollama: - host: "http://localhost:11434" +# LLM config — set OPENROUTER_API_KEY env var or add apiKey here +# llm: +# apiKey: "sk-or-v1-..." +# baseUrl: "https://openrouter.ai/api/v1" models: - planner: "qwen2.5:32b" - scout: "qwen2.5-coder:14b" - secretary: "qwen2.5:32b" - lightweight: "llama3.1:8b" + planner: "anthropic/claude-sonnet-4-5" + scout: "anthropic/claude-sonnet-4-5" + secretary: "anthropic/claude-sonnet-4-5" + lightweight: "anthropic/claude-haiku-4-5" sandbox: image: "nightbot-sandbox:latest" memory: "8g"