-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtpa_config.json
183 lines (183 loc) · 3.94 KB
/
tpa_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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
{
"name": "ProAction",
"description": "Proactive multi-agent AI assistant for AugmentOS",
"version": "0.1.0",
"settings": [
{
"type": "group",
"title": "Agent Settings"
},
{
"key": "enable_factual_agent",
"type": "select",
"label": "Enable Factual Agent",
"defaultValue": true,
"description": "Provides factual information based on conversations",
"options": [
{
"label": "Enabled",
"value": true
},
{
"label": "Disabled",
"value": false
}
]
},
{
"key": "enable_audio_agent",
"type": "select",
"label": "Enable Audio Agent",
"defaultValue": false,
"description": "Analyzes audio patterns for insights",
"options": [
{
"label": "Enabled",
"value": true
},
{
"label": "Disabled",
"value": false
}
]
},
{
"type": "group",
"title": "Audio Recording Settings"
},
{
"key": "enable_audio_recording",
"type": "select",
"label": "Enable Audio Recording",
"defaultValue": true,
"description": "Record audio streams for later analysis",
"options": [
{
"label": "Enabled",
"value": true
},
{
"label": "Disabled",
"value": false
}
]
},
{
"key": "audio_chunk_interval",
"type": "select",
"label": "Chunk Interval (seconds)",
"defaultValue": 10,
"description": "How often to save audio chunks",
"options": [
{
"label": "5 seconds",
"value": 5
},
{
"label": "10 seconds",
"value": 10
},
{
"label": "30 seconds",
"value": 30
},
{
"label": "60 seconds",
"value": 60
}
]
},
{
"key": "use_multiple_files",
"type": "select",
"label": "Use Multiple Files",
"defaultValue": false,
"description": "Save as separate files instead of a single continuous file",
"options": [
{
"label": "Yes (Multiple Files)",
"value": true
},
{
"label": "No (Single File)",
"value": false
}
]
},
{
"key": "save_raw_data",
"type": "select",
"label": "Save Raw Audio Data",
"defaultValue": false,
"description": "Save raw LC3 audio data instead of converting to WAV",
"options": [
{
"label": "Yes (Raw Data)",
"value": true
},
{
"label": "No (Processed Data)",
"value": false
}
]
},
{
"type": "group",
"title": "Display Settings"
},
{
"key": "minimum_priority_level",
"type": "select",
"label": "Minimum Priority Level",
"defaultValue": 3,
"description": "Minimum priority level for automatic display",
"options": [
{
"label": "Background (0)",
"value": 0
},
{
"label": "Low (1)",
"value": 1
},
{
"label": "Medium (2)",
"value": 2
},
{
"label": "High (3)",
"value": 3
},
{
"label": "Critical (4)",
"value": 4
}
]
},
{
"key": "display_duration",
"type": "select",
"label": "Display Duration (ms)",
"defaultValue": 5000,
"description": "Default duration for temporary displays in milliseconds",
"options": [
{
"label": "3 seconds",
"value": 3000
},
{
"label": "5 seconds",
"value": 5000
},
{
"label": "10 seconds",
"value": 10000
},
{
"label": "15 seconds",
"value": 15000
}
]
}
]
}