-
-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathchatbots.ts
More file actions
234 lines (233 loc) · 6.98 KB
/
Copy pathchatbots.ts
File metadata and controls
234 lines (233 loc) · 6.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
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
type Chatbot = {
url: string
supports_custom_temperature?: boolean
supports_custom_top_p?: boolean
supports_system_instructions?: boolean
supports_user_provided_model?: boolean
supports_user_provided_port?: boolean
supports_reasoning_effort?: boolean
supported_reasoning_efforts?: string[]
supports_thinking_budget?: boolean
supports_url_override?: boolean
url_override_label?: string
url_override_disabled_options?: string[]
default_system_instructions?: string
supported_options?: {
[option: string]: string
}
models?: {
[model: string]: {
label: string
disabled_options?: string[]
supported_reasoning_efforts?: string[]
}
}
}
export const CHATBOTS = {
'AI Studio': {
url: 'https://aistudio.google.com/prompts/new_chat',
supports_custom_temperature: true,
supports_custom_top_p: true,
supports_system_instructions: true,
supports_thinking_budget: true,
default_system_instructions: "You're a helpful coding assistant.",
supported_options: {
'hide-panel': 'Hide panel',
'grounding-with-google-search': 'Grounding with Google Search',
'url-context': 'URL context'
},
models: {
'gemini-3.5-flash': {
label: 'Gemini 3.5 Flash',
supported_reasoning_efforts: ['Minimal', 'Low', 'Medium', 'High']
},
'gemini-3.1-pro-preview': {
label: 'Gemini 3.1 Pro Preview',
supported_reasoning_efforts: ['Low', 'Medium', 'High']
},
'gemini-3.1-flash-lite': {
label: 'Gemini 3.1 Flash Lite',
supported_reasoning_efforts: ['Minimal', 'Low', 'Medium', 'High']
}
}
} as Chatbot,
Astraflow: {
url: 'https://astraflow.ucloud-global.com',
supports_custom_temperature: true,
supports_custom_top_p: true,
supports_system_instructions: true,
supports_user_provided_model: true,
default_system_instructions: "You're a helpful coding assistant."
} as Chatbot,
'Astraflow CN': {
url: 'https://astraflow.ucloud.cn',
supports_custom_temperature: true,
supports_custom_top_p: true,
supports_system_instructions: true,
supports_user_provided_model: true,
default_system_instructions: "You're a helpful coding assistant."
} as Chatbot,
Arena: {
url: 'https://arena.ai/',
supports_user_provided_model: true
} as Chatbot,
ChatGPT: {
url: 'https://chatgpt.com/',
supports_url_override: true,
url_override_label: 'Project URL',
url_override_disabled_options: ['temporary'],
supported_options: {
temporary: 'Temporary',
thinking: 'Thinking (free plans)'
}
} as Chatbot,
Claude: {
url: 'https://claude.ai/new',
supports_url_override: true,
url_override_label: 'Project URL',
url_override_disabled_options: ['incognito-chat'],
supported_options: {
'incognito-chat': 'Incognito chat'
},
models: {
'sonnet-4-5': { label: 'Sonnet 4.5' },
'haiku-4-5': { label: 'Haiku 4.5' },
'opus-4-6': { label: 'Opus 4.6' }
}
} as Chatbot,
Copilot: {
url: 'https://copilot.microsoft.com/'
} as Chatbot,
DeepSeek: {
url: 'https://chat.deepseek.com/',
supported_options: { 'deep-think': 'DeepThink', search: 'Search' }
} as Chatbot,
Doubao: {
url: 'https://www.doubao.com/chat/',
supported_options: { 'deep-thinking': 'Deep Thinking' }
} as Chatbot,
Gemini: {
url: 'https://gemini.google.com/app',
supported_options: { 'temporary-chat': 'Temporary chat' },
supports_url_override: true,
url_override_label: 'Gem URL',
url_override_disabled_options: ['temporary-chat'],
supports_reasoning_effort: true,
supported_reasoning_efforts: ['Standard', 'Extended'],
models: {
'flash-lite': { label: 'Flash-Lite' },
flash: { label: 'Flash' },
pro: { label: 'Pro' }
}
} as Chatbot,
'GitHub Copilot': {
url: 'https://github.com/copilot',
supports_url_override: true,
url_override_label: 'Space URL',
models: {
'gpt-5-mini': { label: 'GPT-5 mini' },
'grok-code-fast-1': { label: 'Grok Code Fast 1' },
'gemini-3-flash': { label: 'Gemini 3 Flash' },
'claude-haiku-4.5': { label: 'Claude Haiku 4.5' },
'gpt-4.1': { label: 'GPT-4.1' },
'gpt-4o': { label: 'GPT-4o' },
'gpt-5': { label: 'GPT-5' },
'gpt-5.1': { label: 'GPT-5.1' },
'gpt-5.2': { label: 'GPT-5.2' },
'claude-sonnet-4': { label: 'Claude Sonnet 4' },
'claude-sonnet-4.5': { label: 'Claude Sonnet 4.5' },
'claude-opus-4.5': { label: 'Claude Opus 4.5' },
'gemini-3-pro': { label: 'Gemini 3 Pro' }
}
} as Chatbot,
Grok: {
url: 'https://grok.com/',
supports_url_override: true,
url_override_label: 'Project URL',
url_override_disabled_options: ['private'],
supported_options: { private: 'Private' },
models: {
auto: { label: 'Auto' },
fast: { label: 'Fast' },
expert: { label: 'Expert' },
'grok-4-1-thinking': { label: 'Grok 4.1 Thinking' },
heavy: { label: 'Heavy' }
}
} as Chatbot,
HuggingChat: {
url: 'https://huggingface.co/chat/',
supports_user_provided_model: true
} as Chatbot,
Kimi: {
url: 'https://www.kimi.com/'
} as Chatbot,
'Meta AI': {
url: 'https://www.meta.ai/'
} as Chatbot,
Mistral: {
url: 'https://chat.mistral.ai/chat',
supports_url_override: true,
url_override_label: 'Project URL',
url_override_disabled_options: ['incognito'],
supported_options: {
incognito: 'Incognito mode',
think: 'Think'
}
} as Chatbot,
'Open WebUI': {
url: 'http://openwebui/',
supports_custom_temperature: true,
supports_custom_top_p: true,
supports_system_instructions: true,
supports_user_provided_model: true,
supports_user_provided_port: true,
default_system_instructions: "You're a helpful coding assistant."
} as Chatbot,
OpenRouter: {
url: 'https://openrouter.ai/chat',
supports_custom_temperature: true,
supports_custom_top_p: true,
supports_system_instructions: true,
supports_reasoning_effort: true,
supported_reasoning_efforts: [
'None',
'Minimal',
'Low',
'Medium',
'High',
'XHigh'
],
default_system_instructions: "You're a helpful coding assistant.",
supported_options: {
'disable-reasoning': 'Disable reasoning (for hybrid models)'
}
} as Chatbot,
Qwen: {
url: 'https://chat.qwen.ai/',
supports_url_override: true,
url_override_label: 'Project URL',
supported_options: {
thinking: 'Thinking',
search: 'Search',
temporary: 'Temporary'
}
} as Chatbot,
Together: {
url: 'https://chat.together.ai/',
models: {
'glm-5': { label: 'GLM-5' },
'deepseek-v3.1': { label: 'DeepSeek V3.1' },
'kimi-k2.5': { label: 'Kimi K2.5' },
'minimax-m2.5': { label: 'MiniMax-M2.5' }
}
} as Chatbot,
Yuanbao: {
url: 'https://yuanbao.tencent.com/chat'
} as Chatbot,
Z: {
url: 'https://chat.z.ai/',
supported_options: {
'deep-think': 'Deep Think'
}
} as Chatbot
}