-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
51 lines (51 loc) · 1.23 KB
/
Copy pathconfig.example.json
File metadata and controls
51 lines (51 loc) · 1.23 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
{
"version": "1.0",
"providers": [
{
"id": "openai-example",
"providerType": "openaiCompatible",
"name": "OpenAI",
"baseUrl": "https://api.openai.com/v1",
"apiKey": "sk-YOUR_API_KEY_HERE",
"model": "gpt-4o-mini",
"temperature": 0.7,
"maxTokens": 2048,
"isActive": true
},
{
"id": "claude-example",
"providerType": "anthropic",
"name": "Claude",
"baseUrl": "https://api.anthropic.com",
"apiKey": "sk-ant-YOUR_API_KEY_HERE",
"model": "claude-3-5-sonnet-20241022",
"temperature": 0.7,
"maxTokens": 2048
},
{
"id": "gemini-example",
"providerType": "gemini",
"name": "Gemini",
"baseUrl": "https://generativelanguage.googleapis.com",
"apiKey": "YOUR_GEMINI_API_KEY_HERE",
"model": "gemini-1.5-flash",
"temperature": 0.7,
"maxTokens": 2048
},
{
"id": "ollama-example",
"providerType": "ollama",
"name": "Ollama 本地",
"baseUrl": "http://localhost:11434",
"apiKey": "",
"model": "llama3.2",
"temperature": 0.7,
"maxTokens": 2048
}
],
"settings": {
"themeMode": "system",
"locale": "zh_CN",
"socraticMode": true
}
}