-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.default.json
More file actions
186 lines (186 loc) · 4.7 KB
/
settings.default.json
File metadata and controls
186 lines (186 loc) · 4.7 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
{
"general": {
"language": "",
"clipboardEnabled": true,
"autoUpdate": {
"enabled": true,
"checkOnLaunchDelaySec": 10,
"betaChannel": false
}
},
"appearance": {
"theme": "auto"
},
"chat": {
"temperature": 0.7,
"max_tokens": 2048,
"top_p": 0.95,
"streamingEnabled": true,
"reasoningEnabled": false,
"webSearchEnabled": false,
"defaultModel": null,
"defaultProvider": null
},
"providers": [
{
"id": "openai",
"name": "OpenAI",
"apiKey": "",
"host": "https://api.openai.com/v1",
"models": [
{
"id": "gpt-4",
"name": "GPT-4",
"type": "chat",
"capabilities": ["chat"],
"description": "Latest model from OpenAI"
},
{
"id": "gpt-3.5",
"name": "GPT-3.5",
"type": "chat",
"capabilities": ["chat"],
"description": "Previous generation model"
}
]
},
{
"id": "azure-openai",
"name": "Azure OpenAI",
"apiKey": "",
"apiVersion": "",
"host": "https://{your-resource-name}.openai.azure.com",
"description": "For Azure OpenAI, you can provide either a base endpoint (e.g., https://{your-resource-name}.openai.azure.com)",
"models": [
{
"id": "gpt-4o",
"name": "Azure GPT-4o",
"type": "chat",
"capabilities": ["chat"],
"description": "Azure GPT-4o"
}
]
},
{
"id": "anthropic",
"name": "Anthropic",
"apiKey": "",
"host": "https://api.anthropic.com",
"models": [
{
"id": "claude-3-opus-20240229",
"name": "Claude 3 Opus",
"type": "chat",
"capabilities": ["chat"],
"description": "Most powerful Claude model for highly complex tasks"
},
{
"id": "claude-3-sonnet-20240229",
"name": "Claude 3 Sonnet",
"type": "chat",
"capabilities": ["chat"],
"description": "Balanced Claude model for most tasks"
},
{
"id": "claude-3-haiku-20240307",
"name": "Claude 3 Haiku",
"type": "chat",
"capabilities": ["chat"],
"description": "Fastest, most compact Claude model"
}
]
},
{
"id": "google",
"name": "Google AI",
"apiKey": "",
"host": "https://generativelanguage.googleapis.com/v1beta",
"config": {
"topK": 40
},
"models": [
{
"id": "gemini-1.5-pro",
"name": "Gemini 1.5 Pro",
"type": "chat",
"capabilities": ["chat"],
"description": "Highly capable multimodal model"
},
{
"id": "gemini-1.5-flash",
"name": "Gemini 1.5 Flash",
"type": "chat",
"capabilities": ["chat"],
"description": "Fast and efficient model for most tasks"
}
]
},
{
"id": "deepseek",
"name": "DeepSeek",
"apiKey": "",
"host": "https://api.deepseek.com",
"models": [
{
"id": "deepseek-chat",
"name": "DeepSeek Chat",
"type": "chat",
"capabilities": ["chat"],
"description": "DeepSeek general chat model"
},
{
"id": "deepseek-reasoner",
"name": "DeepSeek Reasoner",
"type": "chat",
"capabilities": ["chat", "reasoning"],
"description": "Reasoning-optimized model"
}
]
},
{
"id": "qwen",
"name": "Qwen",
"apiKey": "",
"host": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"models": [
{
"id": "qwen-plus",
"name": "Qwen Plus",
"type": "chat",
"capabilities": ["chat"],
"description": "Balanced Qwen model"
},
{
"id": "qwen-max",
"name": "Qwen Max",
"type": "chat",
"capabilities": ["chat"],
"description": "Most capable Qwen model"
},
{
"id": "qwen-turbo",
"name": "Qwen Turbo",
"type": "chat",
"capabilities": ["chat"],
"description": "Fast and efficient Qwen model"
}
]
},
{
"id": "ollama",
"name": "Ollama (Local)",
"apiKey": "",
"host": "http://localhost:11434/api/chat",
"description": "Use local models served by the Ollama runtime",
"models": [
{
"id": "llama3.2",
"name": "llama3.2",
"type": "chat",
"capabilities": ["chat"],
"description": "Default sample model name; replace with your local models"
}
]
}
]
}