-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
48 lines (48 loc) · 1.18 KB
/
config.json
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
{
"api_keys": [
"test_key"
],
"auth_enforcement_enabled": false,
"host": "localhost",
"port": 32823,
"allowed_origins": [
"*",
"tauri://localhost"
],
"default_provider": "OPENAI",
"provider_options": {
"OLLAMA": {
"base_url": "http://127.0.0.1:11434",
"model_settings": {
"mistral-instruct": {
"model": "mistral:7b-instruct-q5_K_M",
"num_ctx": 32768
}
}
},
"OPENAI": {
"base_url": "https://api.openai.com",
"api_key": ""
},
"MISTRAL": {
"base_url": "https://api.mistral.ai",
"api_key": ""
},
"GROQ": {
"base_url": "https://api.groq.com/openai",
"api_key": ""
},
"ANTHROPIC": {
"base_url": "https://api.anthropic.com",
"api_key": ""
},
"TOGETHER": {
"base_url": "https://api.together.xyz",
"api_key": ""
},
"LMSTUDIO": {
"base_url": "http://localhost:1234",
"api_key": ""
}
}
}