@norskvideo/norsk-studio-alpha 1.27.0-2025-10-13-680fc249 → 1.27.0-2025-10-14-95f8632a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/info.js +39325 -0
- package/client/processor.audioLevel/styles.css +165 -0
- package/client/shared/style.css +1627 -0
- package/client/shared/tailwind.css +31 -0
- package/client/style.css +1753 -0
- package/client/util.aiChat/styles.css +371 -0
- package/lib/output.tams/types.yaml +266 -0
- package/lib/processor.actionReplay/types.yaml +78 -0
- package/lib/processor.audioLevel/types.yaml +81 -0
- package/lib/processor.delayAll/types.yaml +23 -0
- package/lib/processor.whisper-transcribe/types.yaml +29 -0
- package/lib/util.agent/types.yaml +426 -0
- package/lib/util.aiChat/types.yaml +141 -0
- package/lib/util.timestamps/types.yaml +70 -0
- package/package.json +4 -4
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# This file has been generated, please edit types.source.yaml instead
|
|
2
|
+
|
|
3
|
+
openapi: 3.0.0
|
|
4
|
+
info:
|
|
5
|
+
title: Audio Level
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
components:
|
|
8
|
+
schemas:
|
|
9
|
+
AudioLevelSettings:
|
|
10
|
+
type: object
|
|
11
|
+
properties:
|
|
12
|
+
id:
|
|
13
|
+
type: string
|
|
14
|
+
displayName:
|
|
15
|
+
type: string
|
|
16
|
+
defaultGain:
|
|
17
|
+
type: number
|
|
18
|
+
notes:
|
|
19
|
+
type: string
|
|
20
|
+
required:
|
|
21
|
+
- id
|
|
22
|
+
- displayName
|
|
23
|
+
- defaultGain
|
|
24
|
+
AudioLevelState:
|
|
25
|
+
type: object
|
|
26
|
+
properties:
|
|
27
|
+
levels:
|
|
28
|
+
type: object
|
|
29
|
+
properties:
|
|
30
|
+
peak:
|
|
31
|
+
type: number
|
|
32
|
+
rms:
|
|
33
|
+
type: number
|
|
34
|
+
required:
|
|
35
|
+
- peak
|
|
36
|
+
- rms
|
|
37
|
+
sliderGain:
|
|
38
|
+
type: number
|
|
39
|
+
nodeGain:
|
|
40
|
+
type: number
|
|
41
|
+
AudioLevelEvent:
|
|
42
|
+
oneOf:
|
|
43
|
+
- type: object
|
|
44
|
+
properties:
|
|
45
|
+
type:
|
|
46
|
+
const: audio-levels
|
|
47
|
+
levels:
|
|
48
|
+
type: object
|
|
49
|
+
properties:
|
|
50
|
+
peak:
|
|
51
|
+
type: number
|
|
52
|
+
rms:
|
|
53
|
+
type: number
|
|
54
|
+
required:
|
|
55
|
+
- peak
|
|
56
|
+
- rms
|
|
57
|
+
required:
|
|
58
|
+
- type
|
|
59
|
+
- levels
|
|
60
|
+
- type: object
|
|
61
|
+
properties:
|
|
62
|
+
type:
|
|
63
|
+
const: set-gain
|
|
64
|
+
sliderGain:
|
|
65
|
+
type: number
|
|
66
|
+
nodeGain:
|
|
67
|
+
type: number
|
|
68
|
+
required:
|
|
69
|
+
- type
|
|
70
|
+
- sliderGain
|
|
71
|
+
- nodeGain
|
|
72
|
+
AudioLevelCommand:
|
|
73
|
+
type: object
|
|
74
|
+
properties:
|
|
75
|
+
type:
|
|
76
|
+
const: set-gain
|
|
77
|
+
value:
|
|
78
|
+
type: number
|
|
79
|
+
required:
|
|
80
|
+
- type
|
|
81
|
+
- value
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# This file has been generated, please edit types.source.yaml instead
|
|
2
|
+
|
|
3
|
+
openapi: 3.0.0
|
|
4
|
+
info:
|
|
5
|
+
title: Delay all
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
components:
|
|
8
|
+
schemas:
|
|
9
|
+
DelayAllConfig:
|
|
10
|
+
type: object
|
|
11
|
+
properties:
|
|
12
|
+
id:
|
|
13
|
+
type: string
|
|
14
|
+
displayName:
|
|
15
|
+
type: string
|
|
16
|
+
delayMs:
|
|
17
|
+
type: number
|
|
18
|
+
notes:
|
|
19
|
+
type: string
|
|
20
|
+
required:
|
|
21
|
+
- id
|
|
22
|
+
- displayName
|
|
23
|
+
- delayMs
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# This file has been generated, please edit types.source.yaml instead
|
|
2
|
+
|
|
3
|
+
openapi: 3.0.0
|
|
4
|
+
info:
|
|
5
|
+
title: Whisper Transcribe
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
components:
|
|
8
|
+
schemas:
|
|
9
|
+
WhisperTranscribeConfig:
|
|
10
|
+
type: object
|
|
11
|
+
properties:
|
|
12
|
+
id:
|
|
13
|
+
type: string
|
|
14
|
+
displayName:
|
|
15
|
+
type: string
|
|
16
|
+
model:
|
|
17
|
+
type: string
|
|
18
|
+
translate:
|
|
19
|
+
type: boolean
|
|
20
|
+
language:
|
|
21
|
+
type: string
|
|
22
|
+
notes:
|
|
23
|
+
type: string
|
|
24
|
+
required:
|
|
25
|
+
- id
|
|
26
|
+
- displayName
|
|
27
|
+
- model
|
|
28
|
+
- translate
|
|
29
|
+
- language
|
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
# This file has been generated, please edit types.source.yaml instead
|
|
2
|
+
|
|
3
|
+
openapi: 3.0.0
|
|
4
|
+
info:
|
|
5
|
+
title: Autonomous Agent
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
paths:
|
|
8
|
+
/memory/working:
|
|
9
|
+
get:
|
|
10
|
+
summary: Get current working memory contents
|
|
11
|
+
description: Returns the current working memory state of the agent
|
|
12
|
+
responses:
|
|
13
|
+
"200":
|
|
14
|
+
description: Working memory data
|
|
15
|
+
content:
|
|
16
|
+
application/json:
|
|
17
|
+
schema:
|
|
18
|
+
type: object
|
|
19
|
+
properties:
|
|
20
|
+
type:
|
|
21
|
+
type: string
|
|
22
|
+
example: working_memory
|
|
23
|
+
data:
|
|
24
|
+
type: object
|
|
25
|
+
additionalProperties: true
|
|
26
|
+
timestamp:
|
|
27
|
+
type: string
|
|
28
|
+
format: date-time
|
|
29
|
+
required:
|
|
30
|
+
- type
|
|
31
|
+
- data
|
|
32
|
+
- timestamp
|
|
33
|
+
/memory/persistent:
|
|
34
|
+
get:
|
|
35
|
+
summary: Get current persistent memory contents
|
|
36
|
+
description: Returns the persistent memory summary of the agent
|
|
37
|
+
responses:
|
|
38
|
+
"200":
|
|
39
|
+
description: Persistent memory data
|
|
40
|
+
content:
|
|
41
|
+
application/json:
|
|
42
|
+
schema:
|
|
43
|
+
type: object
|
|
44
|
+
properties:
|
|
45
|
+
type:
|
|
46
|
+
type: string
|
|
47
|
+
example: persistent_memory
|
|
48
|
+
data:
|
|
49
|
+
type: object
|
|
50
|
+
additionalProperties: true
|
|
51
|
+
timestamp:
|
|
52
|
+
type: string
|
|
53
|
+
format: date-time
|
|
54
|
+
required:
|
|
55
|
+
- type
|
|
56
|
+
- data
|
|
57
|
+
- timestamp
|
|
58
|
+
/memory/summary:
|
|
59
|
+
get:
|
|
60
|
+
summary: Get summarized memory contents
|
|
61
|
+
description: Returns both working and persistent memory summaries
|
|
62
|
+
responses:
|
|
63
|
+
"200":
|
|
64
|
+
description: Memory summary data
|
|
65
|
+
content:
|
|
66
|
+
application/json:
|
|
67
|
+
schema:
|
|
68
|
+
type: object
|
|
69
|
+
properties:
|
|
70
|
+
type:
|
|
71
|
+
type: string
|
|
72
|
+
example: memory_summary
|
|
73
|
+
working_memory:
|
|
74
|
+
type: object
|
|
75
|
+
additionalProperties: true
|
|
76
|
+
persistent_memory:
|
|
77
|
+
type: object
|
|
78
|
+
additionalProperties: true
|
|
79
|
+
timestamp:
|
|
80
|
+
type: string
|
|
81
|
+
format: date-time
|
|
82
|
+
required:
|
|
83
|
+
- type
|
|
84
|
+
- working_memory
|
|
85
|
+
- persistent_memory
|
|
86
|
+
- timestamp
|
|
87
|
+
/status/detailed:
|
|
88
|
+
get:
|
|
89
|
+
summary: Get detailed agent status
|
|
90
|
+
description: Returns comprehensive agent status including memory and recent decisions
|
|
91
|
+
responses:
|
|
92
|
+
"200":
|
|
93
|
+
description: Detailed agent status
|
|
94
|
+
content:
|
|
95
|
+
application/json:
|
|
96
|
+
schema:
|
|
97
|
+
type: object
|
|
98
|
+
properties:
|
|
99
|
+
type:
|
|
100
|
+
type: string
|
|
101
|
+
example: detailed_status
|
|
102
|
+
agent_status:
|
|
103
|
+
type: object
|
|
104
|
+
properties:
|
|
105
|
+
is_running:
|
|
106
|
+
type: boolean
|
|
107
|
+
is_paused:
|
|
108
|
+
type: boolean
|
|
109
|
+
initialized:
|
|
110
|
+
type: boolean
|
|
111
|
+
cycles_this_minute:
|
|
112
|
+
type: number
|
|
113
|
+
total_cycles:
|
|
114
|
+
type: number
|
|
115
|
+
cycle_interval_ms:
|
|
116
|
+
type: number
|
|
117
|
+
required:
|
|
118
|
+
- is_running
|
|
119
|
+
- is_paused
|
|
120
|
+
- initialized
|
|
121
|
+
- cycles_this_minute
|
|
122
|
+
- total_cycles
|
|
123
|
+
- cycle_interval_ms
|
|
124
|
+
goal:
|
|
125
|
+
type: string
|
|
126
|
+
system_prompt:
|
|
127
|
+
type: string
|
|
128
|
+
memory:
|
|
129
|
+
type: object
|
|
130
|
+
properties:
|
|
131
|
+
working:
|
|
132
|
+
type: object
|
|
133
|
+
additionalProperties: true
|
|
134
|
+
persistent:
|
|
135
|
+
type: object
|
|
136
|
+
additionalProperties: true
|
|
137
|
+
required:
|
|
138
|
+
- working
|
|
139
|
+
- persistent
|
|
140
|
+
timestamp:
|
|
141
|
+
type: string
|
|
142
|
+
format: date-time
|
|
143
|
+
required:
|
|
144
|
+
- type
|
|
145
|
+
- agent_status
|
|
146
|
+
- goal
|
|
147
|
+
- system_prompt
|
|
148
|
+
- memory
|
|
149
|
+
- timestamp
|
|
150
|
+
components:
|
|
151
|
+
schemas:
|
|
152
|
+
AgentSettings:
|
|
153
|
+
type: object
|
|
154
|
+
properties:
|
|
155
|
+
id:
|
|
156
|
+
type: string
|
|
157
|
+
displayName:
|
|
158
|
+
type: string
|
|
159
|
+
systemPrompt:
|
|
160
|
+
type: string
|
|
161
|
+
goal:
|
|
162
|
+
type: string
|
|
163
|
+
maxCyclesPerMinute:
|
|
164
|
+
type: number
|
|
165
|
+
notes:
|
|
166
|
+
type: string
|
|
167
|
+
required:
|
|
168
|
+
- id
|
|
169
|
+
- displayName
|
|
170
|
+
- systemPrompt
|
|
171
|
+
- goal
|
|
172
|
+
AgentTask: &a1
|
|
173
|
+
type: object
|
|
174
|
+
properties:
|
|
175
|
+
id:
|
|
176
|
+
type: string
|
|
177
|
+
description:
|
|
178
|
+
type: string
|
|
179
|
+
status:
|
|
180
|
+
type: string
|
|
181
|
+
enum:
|
|
182
|
+
- pending
|
|
183
|
+
- in_progress
|
|
184
|
+
- completed
|
|
185
|
+
- failed
|
|
186
|
+
createdAt:
|
|
187
|
+
type: string
|
|
188
|
+
format: date-time
|
|
189
|
+
completedAt:
|
|
190
|
+
type: string
|
|
191
|
+
format: date-time
|
|
192
|
+
result:
|
|
193
|
+
type: string
|
|
194
|
+
error:
|
|
195
|
+
type: string
|
|
196
|
+
required:
|
|
197
|
+
- id
|
|
198
|
+
- description
|
|
199
|
+
- status
|
|
200
|
+
- createdAt
|
|
201
|
+
AgentAction: &a2
|
|
202
|
+
type: object
|
|
203
|
+
properties:
|
|
204
|
+
id:
|
|
205
|
+
type: string
|
|
206
|
+
type:
|
|
207
|
+
type: string
|
|
208
|
+
enum:
|
|
209
|
+
- tool_call
|
|
210
|
+
- component_command
|
|
211
|
+
- event_subscribe
|
|
212
|
+
- analysis
|
|
213
|
+
timestamp:
|
|
214
|
+
type: string
|
|
215
|
+
format: date-time
|
|
216
|
+
description:
|
|
217
|
+
type: string
|
|
218
|
+
parameters:
|
|
219
|
+
type: object
|
|
220
|
+
additionalProperties: true
|
|
221
|
+
result:
|
|
222
|
+
type: object
|
|
223
|
+
additionalProperties: true
|
|
224
|
+
success:
|
|
225
|
+
type: boolean
|
|
226
|
+
error:
|
|
227
|
+
type: string
|
|
228
|
+
required:
|
|
229
|
+
- id
|
|
230
|
+
- type
|
|
231
|
+
- timestamp
|
|
232
|
+
- description
|
|
233
|
+
- success
|
|
234
|
+
AgentState:
|
|
235
|
+
type: object
|
|
236
|
+
properties:
|
|
237
|
+
status:
|
|
238
|
+
type: string
|
|
239
|
+
enum:
|
|
240
|
+
- idle
|
|
241
|
+
- analyzing
|
|
242
|
+
- planning
|
|
243
|
+
- executing
|
|
244
|
+
- paused
|
|
245
|
+
- error
|
|
246
|
+
isRunning:
|
|
247
|
+
type: boolean
|
|
248
|
+
currentTask: *a1
|
|
249
|
+
completedTasks:
|
|
250
|
+
type: array
|
|
251
|
+
items: *a1
|
|
252
|
+
recentActions:
|
|
253
|
+
type: array
|
|
254
|
+
items: *a2
|
|
255
|
+
lastError:
|
|
256
|
+
type: string
|
|
257
|
+
cyclesThisMinute:
|
|
258
|
+
type: number
|
|
259
|
+
totalCycles:
|
|
260
|
+
type: number
|
|
261
|
+
startedAt:
|
|
262
|
+
type: string
|
|
263
|
+
format: date-time
|
|
264
|
+
lastCycleAt:
|
|
265
|
+
type: string
|
|
266
|
+
format: date-time
|
|
267
|
+
discoveredComponents:
|
|
268
|
+
type: array
|
|
269
|
+
items:
|
|
270
|
+
type: object
|
|
271
|
+
properties:
|
|
272
|
+
id:
|
|
273
|
+
type: string
|
|
274
|
+
type:
|
|
275
|
+
type: string
|
|
276
|
+
capabilities:
|
|
277
|
+
type: array
|
|
278
|
+
items:
|
|
279
|
+
type: string
|
|
280
|
+
required:
|
|
281
|
+
- id
|
|
282
|
+
- type
|
|
283
|
+
- capabilities
|
|
284
|
+
subscribedEvents:
|
|
285
|
+
type: array
|
|
286
|
+
items:
|
|
287
|
+
type: object
|
|
288
|
+
properties:
|
|
289
|
+
componentId:
|
|
290
|
+
type: string
|
|
291
|
+
eventType:
|
|
292
|
+
type: string
|
|
293
|
+
required:
|
|
294
|
+
- componentId
|
|
295
|
+
- eventType
|
|
296
|
+
required:
|
|
297
|
+
- status
|
|
298
|
+
- isRunning
|
|
299
|
+
- completedTasks
|
|
300
|
+
- recentActions
|
|
301
|
+
- cyclesThisMinute
|
|
302
|
+
- totalCycles
|
|
303
|
+
- discoveredComponents
|
|
304
|
+
- subscribedEvents
|
|
305
|
+
AgentEvent:
|
|
306
|
+
oneOf:
|
|
307
|
+
- type: object
|
|
308
|
+
properties:
|
|
309
|
+
type:
|
|
310
|
+
const: agent_started
|
|
311
|
+
timestamp:
|
|
312
|
+
type: string
|
|
313
|
+
format: date-time
|
|
314
|
+
required:
|
|
315
|
+
- type
|
|
316
|
+
- timestamp
|
|
317
|
+
- type: object
|
|
318
|
+
properties:
|
|
319
|
+
type:
|
|
320
|
+
const: agent_stopped
|
|
321
|
+
timestamp:
|
|
322
|
+
type: string
|
|
323
|
+
format: date-time
|
|
324
|
+
required:
|
|
325
|
+
- type
|
|
326
|
+
- timestamp
|
|
327
|
+
- type: object
|
|
328
|
+
properties:
|
|
329
|
+
type:
|
|
330
|
+
const: task_created
|
|
331
|
+
task: *a1
|
|
332
|
+
required:
|
|
333
|
+
- type
|
|
334
|
+
- task
|
|
335
|
+
- type: object
|
|
336
|
+
properties:
|
|
337
|
+
type:
|
|
338
|
+
const: task_completed
|
|
339
|
+
task: *a1
|
|
340
|
+
required:
|
|
341
|
+
- type
|
|
342
|
+
- task
|
|
343
|
+
- type: object
|
|
344
|
+
properties:
|
|
345
|
+
type:
|
|
346
|
+
const: action_taken
|
|
347
|
+
action: *a2
|
|
348
|
+
required:
|
|
349
|
+
- type
|
|
350
|
+
- action
|
|
351
|
+
- type: object
|
|
352
|
+
properties:
|
|
353
|
+
type:
|
|
354
|
+
const: error_occurred
|
|
355
|
+
error:
|
|
356
|
+
type: string
|
|
357
|
+
required:
|
|
358
|
+
- type
|
|
359
|
+
- error
|
|
360
|
+
- type: object
|
|
361
|
+
properties:
|
|
362
|
+
type:
|
|
363
|
+
const: component_discovered
|
|
364
|
+
componentId:
|
|
365
|
+
type: string
|
|
366
|
+
capabilities:
|
|
367
|
+
type: array
|
|
368
|
+
items:
|
|
369
|
+
type: string
|
|
370
|
+
required:
|
|
371
|
+
- type
|
|
372
|
+
- componentId
|
|
373
|
+
- capabilities
|
|
374
|
+
AgentCommand:
|
|
375
|
+
oneOf:
|
|
376
|
+
- type: object
|
|
377
|
+
properties:
|
|
378
|
+
type:
|
|
379
|
+
const: start_agent
|
|
380
|
+
required:
|
|
381
|
+
- type
|
|
382
|
+
- type: object
|
|
383
|
+
properties:
|
|
384
|
+
type:
|
|
385
|
+
const: stop_agent
|
|
386
|
+
required:
|
|
387
|
+
- type
|
|
388
|
+
- type: object
|
|
389
|
+
properties:
|
|
390
|
+
type:
|
|
391
|
+
const: pause_agent
|
|
392
|
+
required:
|
|
393
|
+
- type
|
|
394
|
+
- type: object
|
|
395
|
+
properties:
|
|
396
|
+
type:
|
|
397
|
+
const: resume_agent
|
|
398
|
+
required:
|
|
399
|
+
- type
|
|
400
|
+
- type: object
|
|
401
|
+
properties:
|
|
402
|
+
type:
|
|
403
|
+
const: assign_task
|
|
404
|
+
description:
|
|
405
|
+
type: string
|
|
406
|
+
required:
|
|
407
|
+
- type
|
|
408
|
+
- description
|
|
409
|
+
- type: object
|
|
410
|
+
properties:
|
|
411
|
+
type:
|
|
412
|
+
const: cancel_task
|
|
413
|
+
taskId:
|
|
414
|
+
type: string
|
|
415
|
+
required:
|
|
416
|
+
- type
|
|
417
|
+
- taskId
|
|
418
|
+
- type: object
|
|
419
|
+
properties:
|
|
420
|
+
type:
|
|
421
|
+
const: update_goal
|
|
422
|
+
goal:
|
|
423
|
+
type: string
|
|
424
|
+
required:
|
|
425
|
+
- type
|
|
426
|
+
- goal
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
# This file has been generated, please edit types.source.yaml instead
|
|
2
|
+
|
|
3
|
+
openapi: 3.0.0
|
|
4
|
+
info:
|
|
5
|
+
title: AI Chat
|
|
6
|
+
version: 1.0.0
|
|
7
|
+
components:
|
|
8
|
+
schemas:
|
|
9
|
+
AIChatSettings:
|
|
10
|
+
type: object
|
|
11
|
+
properties:
|
|
12
|
+
id:
|
|
13
|
+
type: string
|
|
14
|
+
displayName:
|
|
15
|
+
type: string
|
|
16
|
+
systemPrompt:
|
|
17
|
+
type: string
|
|
18
|
+
initialMessage:
|
|
19
|
+
type: string
|
|
20
|
+
maxTokens:
|
|
21
|
+
type: number
|
|
22
|
+
temperature:
|
|
23
|
+
type: number
|
|
24
|
+
notes:
|
|
25
|
+
type: string
|
|
26
|
+
required:
|
|
27
|
+
- id
|
|
28
|
+
- displayName
|
|
29
|
+
- systemPrompt
|
|
30
|
+
AIChatMessage: &a1
|
|
31
|
+
type: object
|
|
32
|
+
properties:
|
|
33
|
+
id:
|
|
34
|
+
type: string
|
|
35
|
+
role:
|
|
36
|
+
type: string
|
|
37
|
+
enum:
|
|
38
|
+
- user
|
|
39
|
+
- assistant
|
|
40
|
+
- system
|
|
41
|
+
- tool
|
|
42
|
+
content:
|
|
43
|
+
type: string
|
|
44
|
+
timestamp:
|
|
45
|
+
type: string
|
|
46
|
+
format: date-time
|
|
47
|
+
toolCalls:
|
|
48
|
+
type: array
|
|
49
|
+
items:
|
|
50
|
+
type: object
|
|
51
|
+
properties:
|
|
52
|
+
id:
|
|
53
|
+
type: string
|
|
54
|
+
name:
|
|
55
|
+
type: string
|
|
56
|
+
arguments:
|
|
57
|
+
type: object
|
|
58
|
+
required:
|
|
59
|
+
- id
|
|
60
|
+
- name
|
|
61
|
+
- arguments
|
|
62
|
+
toolCallId:
|
|
63
|
+
type: string
|
|
64
|
+
error:
|
|
65
|
+
type: string
|
|
66
|
+
required:
|
|
67
|
+
- id
|
|
68
|
+
- role
|
|
69
|
+
- content
|
|
70
|
+
- timestamp
|
|
71
|
+
AIChatState:
|
|
72
|
+
type: object
|
|
73
|
+
properties:
|
|
74
|
+
messages:
|
|
75
|
+
type: array
|
|
76
|
+
items: *a1
|
|
77
|
+
isThinking:
|
|
78
|
+
type: boolean
|
|
79
|
+
currentProvider:
|
|
80
|
+
type: string
|
|
81
|
+
providerAvailable:
|
|
82
|
+
type: boolean
|
|
83
|
+
lastError:
|
|
84
|
+
type: string
|
|
85
|
+
conversationStarted:
|
|
86
|
+
type: string
|
|
87
|
+
format: date-time
|
|
88
|
+
AIChatEvent:
|
|
89
|
+
oneOf:
|
|
90
|
+
- type: object
|
|
91
|
+
properties:
|
|
92
|
+
type:
|
|
93
|
+
const: message_sent
|
|
94
|
+
message: *a1
|
|
95
|
+
required:
|
|
96
|
+
- type
|
|
97
|
+
- message
|
|
98
|
+
- type: object
|
|
99
|
+
properties:
|
|
100
|
+
type:
|
|
101
|
+
const: message_received
|
|
102
|
+
message: *a1
|
|
103
|
+
required:
|
|
104
|
+
- type
|
|
105
|
+
- message
|
|
106
|
+
- type: object
|
|
107
|
+
properties:
|
|
108
|
+
type:
|
|
109
|
+
const: conversation_reset
|
|
110
|
+
timestamp:
|
|
111
|
+
type: string
|
|
112
|
+
format: date-time
|
|
113
|
+
required:
|
|
114
|
+
- type
|
|
115
|
+
- timestamp
|
|
116
|
+
- type: object
|
|
117
|
+
properties:
|
|
118
|
+
type:
|
|
119
|
+
const: error_occurred
|
|
120
|
+
error:
|
|
121
|
+
type: string
|
|
122
|
+
required:
|
|
123
|
+
- type
|
|
124
|
+
- error
|
|
125
|
+
AIChatCommand:
|
|
126
|
+
oneOf:
|
|
127
|
+
- type: object
|
|
128
|
+
properties:
|
|
129
|
+
type:
|
|
130
|
+
const: send_message
|
|
131
|
+
content:
|
|
132
|
+
type: string
|
|
133
|
+
required:
|
|
134
|
+
- type
|
|
135
|
+
- content
|
|
136
|
+
- type: object
|
|
137
|
+
properties:
|
|
138
|
+
type:
|
|
139
|
+
const: reset_conversation
|
|
140
|
+
required:
|
|
141
|
+
- type
|