-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
35 lines (35 loc) · 748 Bytes
/
config.json
File metadata and controls
35 lines (35 loc) · 748 Bytes
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
{
"llm": {
"local_model": "gemma2:27b",
"cloud_model": "claude-haiku-4-5-20250404",
"cloud_enabled": false,
"ollama_url": "http://localhost:11434"
},
"brain": {
"num_sensory": 200,
"num_feature": 200,
"num_association": 500,
"num_concept": 1000,
"num_wm": 100,
"num_motor": 50,
"concept_k": 5,
"tick_hz": 100
},
"sensors": {
"mock_mode": false,
"mic_enabled": true,
"keyboard_enabled": true,
"mouse_enabled": true
},
"daemon": {
"port": 8765,
"push_hz": 30,
"save_interval_sec": 60,
"checkpoint_path": "checkpoints/braind.sqlite"
},
"voice": {
"tts_model": "models/de_DE-thorsten-medium.onnx",
"stt_model": "small",
"language": "de"
}
}