Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions setup/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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: {},
Expand Down Expand Up @@ -608,7 +608,7 @@ <h2>OpenRouter</h2>
</div>
<div class="field">
<label>Model <span class="hint">— openrouter.ai/models</span></label>
<input type="text" id="f-model" value="${escHtml(state.model || 'qwen/qwen3-235b-a22b')}">
<input type="text" id="f-model" value="${escHtml(state.model || 'moonshotai/kimi-k2.5')}">
<div class="error-msg" id="f-model-err">Model is required.</div>
</div>
<div class="field">
Expand All @@ -621,7 +621,7 @@ <h2>OpenRouter</h2>
</div>
<div class="field">
<label>Location <span class="hint">— optional, gives the AI your timezone/region</span></label>
<input type="text" id="f-location" placeholder="Tokyo, Japan" value="${escHtml(state.location)}">
<input type="text" id="f-location" placeholder="Hong Kong" value="${escHtml(state.location)}">
</div>
</div>`;

Expand Down
4 changes: 2 additions & 2 deletions src/bin/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]: ")?,
Expand Down