File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments