-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.json.example
More file actions
42 lines (42 loc) · 1.39 KB
/
config.json.example
File metadata and controls
42 lines (42 loc) · 1.39 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
{
"configs": [
{
"name": "official",
"env": {
"ANTHROPIC_BASE_URL": "https://api.anthropic.com",
"ANTHROPIC_AUTH_TOKEN": "sk-ant-xxxxxxxxxxxxxxxxxxxxx",
"ANTHROPIC_MODEL": "claude-3-5-sonnet-20241022",
"MAX_THINKING_TOKENS": "32768"
},
"skipPermissions": false
},
{
"name": "proxy",
"env": {
"ANTHROPIC_BASE_URL": "https://your-proxy.example.com/api",
"ANTHROPIC_AUTH_TOKEN": "your-proxy-token",
"ANTHROPIC_API_KEY": "your-proxy-api-key",
"HTTP_PROXY": "http://proxy.example.com:8080",
"HTTPS_PROXY": "http://proxy.example.com:8080",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "claude-3-haiku-20240307-custom",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "claude-3-sonnet-20240229-custom"
},
"skipPermissions": true
},
{
"name": "custom-model",
"env": {
"ANTHROPIC_BASE_URL": "https://api.anthropic.com",
"ANTHROPIC_AUTH_TOKEN": "sk-ant-xxxxxxxxxxxxxxxxxxxxx",
"ANTHROPIC_DEFAULT_HAIKU_MODEL": "my-custom-haiku-model",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "my-custom-sonnet-model",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "my-custom-opus-model",
"CLAUDE_CODE_API_KEY_HELPER_TTL_MS": "3600000",
"MAX_THINKING_TOKENS": "65536"
}
}
],
"default": "official",
"skipPermissions": false,
"defaultBehavior": "current"
}