-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.example.json
More file actions
78 lines (78 loc) · 1.98 KB
/
models.example.json
File metadata and controls
78 lines (78 loc) · 1.98 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "claunch",
"lang": "en",
"models": [
{
"name": "Claude Opus 4.7",
"model": "claude-opus-4-7",
"env": {}
},
{
"name": "Claude Opus 4.7 (1M)",
"model": "claude-opus-4-7[1m]",
"env": {}
},
{
"name": "Claude Sonnet 4.6",
"model": "claude-sonnet-4-6",
"env": {}
},
{
"name": "Claude Haiku 4.5",
"model": "claude-haiku-4-5-20251001",
"env": {}
},
{
"name": "Claude Opus 4.6",
"model": "claude-opus-4-6",
"env": {}
},
{
"name": "Claude Opus 4.6 (1M)",
"model": "claude-opus-4-6[1m]",
"env": {}
},
{
"name": "MiniMax-M2.7",
"model": "",
"env": {
"ANTHROPIC_BASE_URL": "https://api.minimaxi.com/anthropic",
"ANTHROPIC_AUTH_TOKEN": "your-minimax-api-key",
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1",
"ANTHROPIC_MODEL": "MiniMax-M2.7"
}
},
{
"name": "MiniMax-M2.5",
"model": "",
"env": {
"ANTHROPIC_BASE_URL": "https://api.minimaxi.com/anthropic",
"ANTHROPIC_AUTH_TOKEN": "your-minimax-api-key",
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1",
"ANTHROPIC_MODEL": "MiniMax-M2.5"
}
},
{
"name": "DeepSeek V4 Pro (1M)",
"model": "",
"env": {
"ANTHROPIC_BASE_URL": "https://api.deepseek.com/anthropic",
"ANTHROPIC_AUTH_TOKEN": "your-deepseek-api-key",
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1",
"CLAUDE_MAX_CONTEXT_WINDOW": "1000000",
"ANTHROPIC_MODEL": "deepseek-v4-pro[1m]"
}
},
{
"name": "DeepSeek V4 Flash (1M)",
"model": "",
"env": {
"ANTHROPIC_BASE_URL": "https://api.deepseek.com/anthropic",
"ANTHROPIC_AUTH_TOKEN": "your-deepseek-api-key",
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC": "1",
"CLAUDE_MAX_CONTEXT_WINDOW": "1000000",
"ANTHROPIC_MODEL": "deepseek-v4-flash[1m]"
}
}
]
}