forked from HKUDS/nanobot
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCONFIG_PROFILE_DEV.json
More file actions
95 lines (95 loc) · 2.34 KB
/
CONFIG_PROFILE_DEV.json
File metadata and controls
95 lines (95 loc) · 2.34 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
{
"agents": {
"defaults": {
"model": "anthropic/claude-opus-4-5",
"temperature": 0.7,
"maxToolIterations": 20,
"memoryWindow": 60,
"maxSubagents": 4
}
},
"providers": {
"openrouter": {
"apiKey": "REPLACE_WITH_DEV_OPENROUTER_KEY"
}
},
"hardware": {
"enabled": true,
"adapter": "mock",
"host": "127.0.0.1",
"port": 18791,
"controlHost": "127.0.0.1",
"controlPort": 18792,
"controlMaxBodyBytes": 12582912,
"networkProfile": "default",
"applyProfileDefaults": false,
"strictStartup": false,
"heartbeatSeconds": 20,
"ttsAudioChunkBytes": 1600,
"audio": {
"enableVad": true,
"prebufferChunks": 3,
"jitterWindow": 8,
"vadSilenceChunks": 6
},
"observabilitySqlitePath": "~/.opencane/data/hardware/observability-dev.db",
"observabilityMaxSamples": 4000,
"auth": {
"enabled": false,
"token": ""
}
},
"vision": {
"enabled": true,
"defaultPrompt": "Describe the scene with key obstacles and safety hints."
},
"lifelog": {
"enabled": true,
"sqlitePath": "~/.opencane/data/lifelog/lifelog-dev.db",
"chromaPersistDir": "~/.opencane/data/lifelog/chroma-dev",
"imageAssetDir": "~/.opencane/data/lifelog/images-dev",
"imageAssetMaxFiles": 3000,
"ingestQueueMaxSize": 64,
"ingestWorkers": 2,
"ingestOverflowPolicy": "reject",
"ingestEnqueueTimeoutMs": 500,
"maxTimelineItems": 200
},
"digitalTask": {
"enabled": true,
"sqlitePath": "~/.opencane/data/digital_task/tasks-dev.db",
"defaultTimeoutSeconds": 120,
"maxConcurrentTasks": 1,
"statusRetryCount": 2,
"statusRetryBackoffMs": 300
},
"safety": {
"enabled": true,
"lowConfidenceThreshold": 0.5,
"maxOutputChars": 320,
"prependCautionForRisk": true,
"semanticGuardEnabled": true,
"directionalConfidenceThreshold": 0.8
},
"interaction": {
"enabled": true,
"emotionEnabled": true,
"proactiveEnabled": true,
"silentEnabled": true,
"lowConfidenceThreshold": 0.45,
"highRiskLevels": [
"P0",
"P1"
],
"proactiveSources": [
"vision_reply"
],
"silentSources": [
"task_update"
],
"quietHoursEnabled": false,
"quietHoursStartHour": 23,
"quietHoursEndHour": 7,
"suppressLowPriorityInQuietHours": true
}
}