-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
101 lines (101 loc) · 2.45 KB
/
config.example.json
File metadata and controls
101 lines (101 loc) · 2.45 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"default_provider": "claude",
"default_model": "claude-opus-4-5",
"providers": {
"claude": {
"api": "anthropic-messages",
"base_url": "https://api.anthropic.com",
"models": {
"claude-opus-4-5": {
"name": "Claude Opus 4.5",
"context_window": 200000,
"max_tokens": 4096,
"cost": {
"input": 15.0,
"output": 75.0,
"cache_read": 1.5,
"cache_write": 18.75
}
},
"claude-sonnet-3-5": {
"name": "Claude Sonnet 3.5",
"context_window": 200000,
"max_tokens": 8192,
"cost": {
"input": 3.0,
"output": 15.0,
"cache_read": 0.3,
"cache_write": 3.75
}
}
}
},
"qwen": {
"api": "openai-completions",
"base_url": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"models": {
"qwen-max": {
"name": "Qwen Max",
"context_window": 32000,
"max_tokens": 8192,
"cost": {
"input": 0.04,
"output": 0.12,
"cache_read": 0.0,
"cache_write": 0.0
}
},
"qwen-plus": {
"name": "Qwen Plus",
"context_window": 131072,
"max_tokens": 8192,
"cost": {
"input": 0.004,
"output": 0.012,
"cache_read": 0.0,
"cache_write": 0.0
}
}
}
},
"kimi": {
"api": "openai-completions",
"base_url": "https://api.moonshot.cn/v1",
"models": {
"moonshot-v1-8k": {
"name": "Kimi 8K",
"context_window": 8000,
"max_tokens": 4096,
"cost": {
"input": 0.012,
"output": 0.012,
"cache_read": 0.0,
"cache_write": 0.0
}
},
"moonshot-v1-32k": {
"name": "Kimi 32K",
"context_window": 32000,
"max_tokens": 4096,
"cost": {
"input": 0.024,
"output": 0.024,
"cache_read": 0.0,
"cache_write": 0.0
}
},
"moonshot-v1-128k": {
"name": "Kimi 128K",
"context_window": 128000,
"max_tokens": 4096,
"cost": {
"input": 0.06,
"output": 0.06,
"cache_read": 0.0,
"cache_write": 0.0
}
}
}
}
}
}