-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubswitch.config.example.json
More file actions
55 lines (55 loc) · 1.5 KB
/
Copy pathsubswitch.config.example.json
File metadata and controls
55 lines (55 loc) · 1.5 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
46
47
48
49
50
51
52
53
54
55
{
"port": 4141,
"logLevel": "info",
"anthropic": {
"baseUrl": "https://api.anthropic.com",
"connectTimeoutMs": 10000,
"maxUpstreamSockets": 256,
"allowInsecureBaseUrl": false
},
"codexIngress": {
"enabled": false,
"subscriptionBaseUrl": "https://chatgpt.com/backend-api/codex",
"apiBaseUrl": "https://api.openai.com/v1",
"connectTimeoutMs": 10000,
"maxUpstreamSockets": 256,
"allowInsecureBaseUrl": false,
"claude": {
"enabled": false,
"baseUrl": "https://api.anthropic.com",
"oauthTokenUrl": "https://platform.claude.com/v1/oauth/token",
"aliases": {},
"allowInsecureBaseUrl": false,
"requestTimeoutMs": 600000,
"streamIdleTimeoutMs": 300000,
"maxSseEventBytes": 4194304,
"maxAggregateBytes": 67108864,
"reasoningCache": {
"maxEntries": 4096,
"maxBytes": 67108864
}
}
},
"providers": {
"codex": {
"baseUrl": "https://chatgpt.com/backend-api/codex",
"oauthTokenUrl": "https://auth.openai.com/oauth/token",
"authFile": "~/.codex/auth.json",
"userAgent": "codex_cli_rs/0.144.6",
"aliases": {},
"reasoningCache": {
"maxEntries": 4096,
"maxBytes": 67108864
},
"requestTimeoutMs": 600000,
"streamIdleTimeoutMs": 300000,
"maxSseEventBytes": 4194304,
"maxAggregateBytes": 67108864,
"allowInsecureBaseUrl": false
}
},
"limits": {
"maxBufferedBodyBytes": 33554432,
"pingIntervalMs": 15000
}
}