From 759d75f240694a320078744c1f23032fd5f80f50 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 20 Feb 2026 15:17:27 +0000 Subject: [PATCH] Update setup defaults: model to moonshotai/kimi-k2.5, location to Hong Kong - Change default model from qwen/qwen3-235b-a22b to moonshotai/kimi-k2.5 in setup wizard state, input fallback, and CLI prompt - Set default location to "Hong Kong" in setup wizard state and placeholder https://claude.ai/code/session_01GYVzYbPWgwsusZFeYKTysE --- setup/index.html | 8 ++++---- src/bin/setup.rs | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/setup/index.html b/setup/index.html index 0394d8e..82f0a45 100644 --- a/setup/index.html +++ b/setup/index.html @@ -224,10 +224,10 @@ telegram_token: '', allowed_user_ids: '', openrouter_key: '', - model: 'qwen/qwen3-235b-a22b', + model: 'moonshotai/kimi-k2.5', max_tokens: '4096', system_prompt: 'You are a helpful AI assistant with access to tools. Use the available tools to help the user with their tasks. When using file or terminal tools, operate only within the allowed sandbox directory. Be concise and helpful.', - location: '', + location: 'Hong Kong', sandbox_dir: '/tmp/rustfox-sandbox', db_path: 'rustfox.db', mcp_selections: {}, @@ -608,7 +608,7 @@

OpenRouter

- +
Model is required.
@@ -621,7 +621,7 @@

OpenRouter

- +
`; diff --git a/src/bin/setup.rs b/src/bin/setup.rs index 059149f..0d4fd4b 100644 --- a/src/bin/setup.rs +++ b/src/bin/setup.rs @@ -256,8 +256,8 @@ fn run_cli(project_root: &Path) -> Result<()> { let user_ids = read_line("Allowed user IDs (comma-separated): ")?; let or_key = read_line("OpenRouter API key: ")?; let model = or_default( - read_line("Model [qwen/qwen3-235b-a22b]: ")?, - "qwen/qwen3-235b-a22b", + read_line("Model [moonshotai/kimi-k2.5]: ")?, + "moonshotai/kimi-k2.5", ); let sandbox = or_default( read_line("Sandbox directory [/tmp/rustfox-sandbox]: ")?,