Skip to content

Commit 7093b73

Browse files
committed
feat: add setting sample
1 parent 62fdaef commit 7093b73

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

settings.example.jsonc

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
// Format: "provider/model". Providers: anthropic, openai, gemini
3+
"model": "anthropic/claude-sonnet-4-6",
4+
"small_model": "anthropic/claude-haiku-4-5", // for SubAgents; empty = same as main
5+
6+
// Per-provider credentials. Only configure the ones you use.
7+
"providers": {
8+
"anthropic": { "api_key": "" },
9+
"openai": { "api_key": "", "base_url": "" },
10+
"gemini": { "api_key": "" }
11+
},
12+
13+
"context_window": 128000, // tokens
14+
"auto_compaction": true, // compact when context fills up
15+
"thinking_level": "low", // off | low | medium | high | xhigh
16+
"max_turns": 30,
17+
18+
"search_provider": "tavily", // tavily | jina
19+
"search_api_key": "",
20+
21+
// MCP servers: stdio (local process) or http (remote endpoint)
22+
"mcp_servers": {
23+
"context7": {
24+
"command": "npx",
25+
"args": ["-y", "@upstash/context7-mcp"]
26+
},
27+
"remote-api": {
28+
"type": "http",
29+
"url": "https://mcp.example.com/mcp",
30+
"headers": { "Authorization": "Bearer your-token-here" }
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)