-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.json
More file actions
26 lines (26 loc) · 844 Bytes
/
Copy pathmodels.json
File metadata and controls
26 lines (26 loc) · 844 Bytes
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
{
"openai": {
"api_base": "https://api.openai.com/v1",
"models": [
{ "id": "gpt-5-mini", "desc": "recommended" },
{ "id": "gpt-5.2", "desc": "high performance" },
{ "id": "gpt-4.1-mini", "desc": "legacy, cheap" }
]
},
"anthropic": {
"api_base": "https://api.anthropic.com",
"models": [
{ "id": "claude-haiku-4-5-20251001", "desc": "recommended" },
{ "id": "claude-sonnet-4-5-20250929", "desc": "balanced" },
{ "id": "claude-opus-4-5-20251101", "desc": "high performance" }
]
},
"gemini": {
"api_base": "https://generativelanguage.googleapis.com/v1beta/openai",
"models": [
{ "id": "gemini-2.5-flash-lite", "desc": "recommended" },
{ "id": "gemini-2.5-flash", "desc": "balanced" },
{ "id": "gemini-2.5-pro", "desc": "high performance" }
]
}
}