forked from BlockRunAI/ClawRouter
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathfreerouter.config.json
More file actions
45 lines (45 loc) · 1.6 KB
/
freerouter.config.json
File metadata and controls
45 lines (45 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"port": 18800,
"host": "127.0.0.1",
"providers": {
"anthropic": {
"baseUrl": "https://api.anthropic.com",
"api": "anthropic"
},
"kimi-coding": {
"baseUrl": "https://api.kimi.com/coding/v1",
"api": "openai",
"headers": {
"User-Agent": "KimiCLI/0.77"
}
}
},
"tiers": {
"SIMPLE": { "primary": "kimi-coding/kimi-for-coding", "fallback": ["anthropic/claude-haiku-4-5"] },
"MEDIUM": { "primary": "anthropic/claude-sonnet-4-5", "fallback": ["anthropic/claude-opus-4-6"] },
"COMPLEX": { "primary": "anthropic/claude-opus-4-6", "fallback": ["anthropic/claude-sonnet-4-5"] },
"REASONING": { "primary": "anthropic/claude-opus-4-6", "fallback": ["anthropic/claude-sonnet-4-5"] }
},
"agenticTiers": {
"SIMPLE": { "primary": "kimi-coding/kimi-for-coding", "fallback": ["anthropic/claude-haiku-4-5"] },
"MEDIUM": { "primary": "anthropic/claude-sonnet-4-5", "fallback": ["anthropic/claude-opus-4-6"] },
"COMPLEX": { "primary": "anthropic/claude-opus-4-6", "fallback": ["anthropic/claude-sonnet-4-5"] },
"REASONING": { "primary": "anthropic/claude-opus-4-6", "fallback": ["anthropic/claude-sonnet-4-5"] }
},
"tierBoundaries": {
"simpleMedium": 0.0,
"mediumComplex": 0.03,
"complexReasoning": 0.15
},
"thinking": {
"adaptive": ["claude-opus-4-6", "claude-opus-4.6"],
"enabled": { "models": ["claude-sonnet-4-5"], "budget": 4096 }
},
"auth": {
"default": "openclaw",
"openclaw": {
"type": "openclaw",
"profilesPath": "~/.openclaw/agents/main/agent/auth-profiles.json"
}
}
}