-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json.example
More file actions
50 lines (50 loc) · 1.25 KB
/
Copy pathsettings.json.example
File metadata and controls
50 lines (50 loc) · 1.25 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
{
"redis": {
"server": "redis",
"port": 6379,
"password": ""
},
"chroma": {
"url": "http://chromadb:8000",
"collection": "signalzero",
"useExternal": true
},
"inference": {
"provider": "local",
"apiKey": "YOUR_API_KEY_HERE",
"endpoint": "http://host.docker.internal:1234/v1",
"model": "your-model-name",
"loopModel": "your-loop-model-name",
"visionModel": "your-vision-model-name",
"savedConfigs": {
"gemini": {
"apiKey": "YOUR_GEMINI_KEY",
"endpoint": "https://generativelanguage.googleapis.com",
"model": "gemini-2.5-pro",
"loopModel": "gemini-2.5-pro",
"visionModel": "gemini-1.5-flash"
},
"local": {
"apiKey": "",
"endpoint": "http://host.docker.internal:1234/v1",
"model": "openai/gpt-oss-120b",
"loopModel": "openai/gpt-oss-120b",
"visionModel": "gpt-4o-mini"
}
}
},
"googleSearch": {
"apiKey": "YOUR_GOOGLE_SEARCH_KEY",
"cx": "YOUR_GOOGLE_CSE_ID"
},
"voiceService": {
"endpoint": "http://voiceservice:8000",
"defaultVoice": "af_sarah",
"defaultDevice": "Channel_1__Channel_2.2"
},
"adminUser": {
"username": "admin",
"passwordHash": "",
"salt": ""
}
}