@fugood/bricks-project 2.22.0-beta.9 → 2.22.0
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/compile/action-name-map.ts +108 -1
- package/compile/index.ts +10 -1
- package/package.json +3 -3
- package/tools/postinstall.ts +16 -9
- package/types/animation.ts +2 -1
- package/types/brick-base.ts +79 -0
- package/types/bricks/3DViewer.ts +200 -0
- package/types/bricks/Camera.ts +195 -0
- package/types/bricks/Chart.ts +362 -0
- package/types/bricks/GenerativeMedia.ts +240 -0
- package/types/bricks/Icon.ts +93 -0
- package/types/bricks/Image.ts +104 -0
- package/types/bricks/Items.ts +461 -0
- package/types/bricks/Lottie.ts +159 -0
- package/types/bricks/QrCode.ts +112 -0
- package/types/bricks/Rect.ts +110 -0
- package/types/bricks/RichText.ts +123 -0
- package/types/bricks/Rive.ts +209 -0
- package/types/bricks/Slideshow.ts +155 -0
- package/types/bricks/Svg.ts +94 -0
- package/types/bricks/Text.ts +143 -0
- package/types/bricks/TextInput.ts +231 -0
- package/types/bricks/Video.ts +170 -0
- package/types/bricks/VideoStreaming.ts +107 -0
- package/types/bricks/WebRtcStream.ts +60 -0
- package/types/bricks/WebView.ts +157 -0
- package/types/bricks/index.ts +20 -0
- package/types/common.ts +8 -3
- package/types/data.ts +6 -0
- package/types/generators/AlarmClock.ts +102 -0
- package/types/generators/Assistant.ts +546 -0
- package/types/generators/BleCentral.ts +225 -0
- package/types/generators/BlePeripheral.ts +202 -0
- package/types/generators/CanvasMap.ts +57 -0
- package/types/generators/CastlesPay.ts +77 -0
- package/types/generators/DataBank.ts +123 -0
- package/types/generators/File.ts +351 -0
- package/types/generators/GraphQl.ts +124 -0
- package/types/generators/Http.ts +117 -0
- package/types/generators/HttpServer.ts +164 -0
- package/types/generators/Information.ts +97 -0
- package/types/generators/Intent.ts +107 -0
- package/types/generators/Iterator.ts +95 -0
- package/types/generators/Keyboard.ts +85 -0
- package/types/generators/LlmAnthropicCompat.ts +188 -0
- package/types/generators/LlmGgml.ts +719 -0
- package/types/generators/LlmOnnx.ts +184 -0
- package/types/generators/LlmOpenAiCompat.ts +206 -0
- package/types/generators/LlmQualcommAiEngine.ts +213 -0
- package/types/generators/Mcp.ts +294 -0
- package/types/generators/McpServer.ts +248 -0
- package/types/generators/MediaFlow.ts +142 -0
- package/types/generators/MqttBroker.ts +121 -0
- package/types/generators/MqttClient.ts +129 -0
- package/types/generators/Question.ts +395 -0
- package/types/generators/RealtimeTranscription.ts +180 -0
- package/types/generators/RerankerGgml.ts +153 -0
- package/types/generators/SerialPort.ts +141 -0
- package/types/generators/SoundPlayer.ts +86 -0
- package/types/generators/SoundRecorder.ts +113 -0
- package/types/generators/SpeechToTextGgml.ts +462 -0
- package/types/generators/SpeechToTextOnnx.ts +227 -0
- package/types/generators/SpeechToTextPlatform.ts +75 -0
- package/types/generators/SqLite.ts +118 -0
- package/types/generators/Step.ts +101 -0
- package/types/generators/TapToPayOnIPhone.ts +175 -0
- package/types/generators/Tcp.ts +120 -0
- package/types/generators/TcpServer.ts +137 -0
- package/types/generators/TextToSpeechGgml.ts +182 -0
- package/types/generators/TextToSpeechOnnx.ts +169 -0
- package/types/generators/TextToSpeechOpenAiLike.ts +113 -0
- package/types/generators/ThermalPrinter.ts +185 -0
- package/types/generators/Tick.ts +75 -0
- package/types/generators/Udp.ts +109 -0
- package/types/generators/VadGgml.ts +211 -0
- package/types/generators/VectorStore.ts +223 -0
- package/types/generators/Watchdog.ts +96 -0
- package/types/generators/WebCrawler.ts +97 -0
- package/types/generators/WebRtc.ts +165 -0
- package/types/generators/WebSocket.ts +142 -0
- package/types/generators/index.ts +51 -0
- package/types/system.ts +64 -0
- package/utils/data.ts +45 -0
- package/utils/event-props.ts +89 -0
- package/types/bricks.ts +0 -3168
- package/types/generators.ts +0 -7633
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import type { SwitchCondInnerStateCurrentCanvas, SwitchCondData, SwitchDef } from '../switch'
|
|
2
|
+
import type { Data, DataLink } from '../data'
|
|
3
|
+
import type {
|
|
4
|
+
Generator,
|
|
5
|
+
EventAction,
|
|
6
|
+
ActionWithDataParams,
|
|
7
|
+
ActionWithParams,
|
|
8
|
+
Action,
|
|
9
|
+
EventProperty,
|
|
10
|
+
} from '../common'
|
|
11
|
+
|
|
12
|
+
/* Connect */
|
|
13
|
+
export type GeneratorWebSocketActionConnect = Action & {
|
|
14
|
+
__actionName: 'GENERATOR_WEB_SOCKET_CONNECT'
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/* Disconnect */
|
|
18
|
+
export type GeneratorWebSocketActionDisconnect = Action & {
|
|
19
|
+
__actionName: 'GENERATOR_WEB_SOCKET_DISCONNECT'
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/* Emit event (Acknowledgement: It's callback, the channel of Socket.IO server can used it as last argument) */
|
|
23
|
+
export type GeneratorWebSocketActionEmit = ActionWithParams & {
|
|
24
|
+
__actionName: 'GENERATOR_WEB_SOCKET_EMIT'
|
|
25
|
+
params?: Array<
|
|
26
|
+
| {
|
|
27
|
+
input: 'eventName'
|
|
28
|
+
value?: string | DataLink | EventProperty
|
|
29
|
+
mapping?: string
|
|
30
|
+
}
|
|
31
|
+
| {
|
|
32
|
+
input: 'arguments'
|
|
33
|
+
value?: Array<any> | DataLink | EventProperty
|
|
34
|
+
mapping?: string
|
|
35
|
+
}
|
|
36
|
+
| {
|
|
37
|
+
input: 'acknowledgementType'
|
|
38
|
+
value?: 'text' | 'json' | DataLink | EventProperty
|
|
39
|
+
mapping?: string
|
|
40
|
+
}
|
|
41
|
+
| {
|
|
42
|
+
input: 'withAcknowledgement'
|
|
43
|
+
value?: boolean | DataLink | EventProperty
|
|
44
|
+
mapping?: string
|
|
45
|
+
}
|
|
46
|
+
>
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/* Emit `message` */
|
|
50
|
+
export type GeneratorWebSocketActionSend = ActionWithParams & {
|
|
51
|
+
__actionName: 'GENERATOR_WEB_SOCKET_SEND'
|
|
52
|
+
params?: Array<{
|
|
53
|
+
input: 'value'
|
|
54
|
+
value?: string | DataLink | EventProperty
|
|
55
|
+
mapping?: string
|
|
56
|
+
}>
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
interface GeneratorWebSocketDef {
|
|
60
|
+
/*
|
|
61
|
+
Default property:
|
|
62
|
+
{}
|
|
63
|
+
*/
|
|
64
|
+
property?: {
|
|
65
|
+
/* Try to connect on generator initialized */
|
|
66
|
+
init?: boolean | DataLink
|
|
67
|
+
/* Endpoint URL (support namespace) */
|
|
68
|
+
url?: string | DataLink
|
|
69
|
+
/* Name of the path that is captured on the server side */
|
|
70
|
+
path?: string | DataLink
|
|
71
|
+
/* URL query parameters */
|
|
72
|
+
query?: {} | DataLink
|
|
73
|
+
/* Whether to reconnect automatically */
|
|
74
|
+
reconnection?: boolean | DataLink
|
|
75
|
+
/* Number of reconnection attempts before giving up */
|
|
76
|
+
attemptTimes?: number | DataLink
|
|
77
|
+
/* How long to initially wait before attempting a new reconnection (1000). Affected by +/- randomizationFactor, for example the default initial delay will be between 500 to 1500ms. */
|
|
78
|
+
delayBase?: number | DataLink
|
|
79
|
+
/* Maximum amount of time to wait between reconnections (5000). Each attempt increases the reconnection delay by 2x along with a randomization as above */
|
|
80
|
+
delayMax?: number | DataLink
|
|
81
|
+
/* Randomization factor 0 <= deplayRandom <= 1 */
|
|
82
|
+
delayRandom?: number | DataLink
|
|
83
|
+
/* Message type, if type is json it's will auto transform to object */
|
|
84
|
+
messageType?: 'json' | 'text' | DataLink
|
|
85
|
+
/* Use Socket.IO as transport channel */
|
|
86
|
+
socketIoEnable?: boolean | DataLink
|
|
87
|
+
/* Socket.IO Version */
|
|
88
|
+
socketIoVersion?: 'latest' | 'v4' | 'v2' | DataLink
|
|
89
|
+
/* Whether to reuse an existing connection */
|
|
90
|
+
socketIoForceNew?: boolean | DataLink
|
|
91
|
+
/* Connection timeout before a connect_error and connect_timeout events are emitted */
|
|
92
|
+
socketIoTimeout?: number | DataLink
|
|
93
|
+
/* Event name to be subscribe */
|
|
94
|
+
socketIoEventName?: string | DataLink
|
|
95
|
+
/* Additional query parameters that are sent when connecting a namespace (then found in socket.handshake.query object on the server-side) */
|
|
96
|
+
socketIoQuery?: {} | DataLink
|
|
97
|
+
/* Protocols to be used in the WebSocket connection */
|
|
98
|
+
wsProtocols?: Array<string | DataLink> | DataLink | string | DataLink | DataLink
|
|
99
|
+
}
|
|
100
|
+
events?: {
|
|
101
|
+
/* Event for connected to server */
|
|
102
|
+
onOpen?: Array<EventAction>
|
|
103
|
+
/* Event for disconnect from server */
|
|
104
|
+
onClose?: Array<EventAction>
|
|
105
|
+
/* Event for receive message */
|
|
106
|
+
onMessage?: Array<EventAction>
|
|
107
|
+
/* Event for error occurred */
|
|
108
|
+
onError?: Array<EventAction>
|
|
109
|
+
}
|
|
110
|
+
outlets?: {
|
|
111
|
+
/* Show socket.io connected or not */
|
|
112
|
+
readyState?: () => Data
|
|
113
|
+
/* Results of each countdown change, it will save to Data */
|
|
114
|
+
message?: () => Data
|
|
115
|
+
/* When Socket.IO mode server can response acknowledgemnt with data to client */
|
|
116
|
+
acknowledgeData?: () => Data
|
|
117
|
+
/* Error message */
|
|
118
|
+
errorMessage?: () => Data
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
/* WebSocket or Socket.IO Generator */
|
|
123
|
+
export type GeneratorWebSocket = Generator &
|
|
124
|
+
GeneratorWebSocketDef & {
|
|
125
|
+
templateKey: 'GENERATOR_WEB_SOCKET'
|
|
126
|
+
switches: Array<
|
|
127
|
+
SwitchDef &
|
|
128
|
+
GeneratorWebSocketDef & {
|
|
129
|
+
conds?: Array<{
|
|
130
|
+
method: '==' | '!=' | '>' | '<' | '>=' | '<='
|
|
131
|
+
cond:
|
|
132
|
+
| SwitchCondInnerStateCurrentCanvas
|
|
133
|
+
| SwitchCondData
|
|
134
|
+
| {
|
|
135
|
+
__typename: 'SwitchCondInnerStateOutlet'
|
|
136
|
+
outlet: 'readyState' | 'message' | 'acknowledgeData' | 'errorMessage'
|
|
137
|
+
value: any
|
|
138
|
+
}
|
|
139
|
+
}>
|
|
140
|
+
}
|
|
141
|
+
>
|
|
142
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
export * from './Tick'
|
|
2
|
+
export * from './AlarmClock'
|
|
3
|
+
export * from './File'
|
|
4
|
+
export * from './MediaFlow'
|
|
5
|
+
export * from './DataBank'
|
|
6
|
+
export * from './GraphQl'
|
|
7
|
+
export * from './Http'
|
|
8
|
+
export * from './SoundPlayer'
|
|
9
|
+
export * from './Keyboard'
|
|
10
|
+
export * from './WebSocket'
|
|
11
|
+
export * from './CanvasMap'
|
|
12
|
+
export * from './Step'
|
|
13
|
+
export * from './Iterator'
|
|
14
|
+
export * from './Watchdog'
|
|
15
|
+
export * from './MqttClient'
|
|
16
|
+
export * from './MqttBroker'
|
|
17
|
+
export * from './BleCentral'
|
|
18
|
+
export * from './SerialPort'
|
|
19
|
+
export * from './Tcp'
|
|
20
|
+
export * from './TcpServer'
|
|
21
|
+
export * from './Udp'
|
|
22
|
+
export * from './HttpServer'
|
|
23
|
+
export * from './WebRtc'
|
|
24
|
+
export * from './WebCrawler'
|
|
25
|
+
export * from './SoundRecorder'
|
|
26
|
+
export * from './BlePeripheral'
|
|
27
|
+
export * from './Question'
|
|
28
|
+
export * from './Information'
|
|
29
|
+
export * from './Intent'
|
|
30
|
+
export * from './TapToPayOnIPhone'
|
|
31
|
+
export * from './CastlesPay'
|
|
32
|
+
export * from './SpeechToTextPlatform'
|
|
33
|
+
export * from './ThermalPrinter'
|
|
34
|
+
export * from './SqLite'
|
|
35
|
+
export * from './McpServer'
|
|
36
|
+
export * from './Mcp'
|
|
37
|
+
export * from './TextToSpeechOnnx'
|
|
38
|
+
export * from './LlmOnnx'
|
|
39
|
+
export * from './SpeechToTextOnnx'
|
|
40
|
+
export * from './SpeechToTextGgml'
|
|
41
|
+
export * from './VadGgml'
|
|
42
|
+
export * from './RealtimeTranscription'
|
|
43
|
+
export * from './LlmGgml'
|
|
44
|
+
export * from './TextToSpeechGgml'
|
|
45
|
+
export * from './RerankerGgml'
|
|
46
|
+
export * from './LlmQualcommAiEngine'
|
|
47
|
+
export * from './LlmOpenAiCompat'
|
|
48
|
+
export * from './TextToSpeechOpenAiLike'
|
|
49
|
+
export * from './LlmAnthropicCompat'
|
|
50
|
+
export * from './Assistant'
|
|
51
|
+
export * from './VectorStore'
|
package/types/system.ts
CHANGED
|
@@ -467,6 +467,16 @@ export type SystemActionChannelPublish = ActionWithParams & {
|
|
|
467
467
|
>
|
|
468
468
|
}
|
|
469
469
|
|
|
470
|
+
/* Delay for a certain time between actions */
|
|
471
|
+
export type SystemActionDelay = ActionWithParams & {
|
|
472
|
+
__actionName: 'DELAY'
|
|
473
|
+
params?: Array<{
|
|
474
|
+
input: 'time'
|
|
475
|
+
value?: number | DataLink | EventProperty
|
|
476
|
+
mapping?: string
|
|
477
|
+
}>
|
|
478
|
+
}
|
|
479
|
+
|
|
470
480
|
/* [Internal] Use a shared application */
|
|
471
481
|
export type SystemActionUseShareApplication = ActionWithParams & {
|
|
472
482
|
__actionName: 'USE_SHARE_APPLICATION'
|
|
@@ -599,3 +609,57 @@ export type SystemActionThrowException = ActionWithParams & {
|
|
|
599
609
|
export type SystemActionDismissKeyboard = Action & {
|
|
600
610
|
__actionName: 'DISMISS_KEYBOARD'
|
|
601
611
|
}
|
|
612
|
+
|
|
613
|
+
/* Trigger application AI filter */
|
|
614
|
+
export type SystemActionTriggerApplicationFilter = ActionWithParams & {
|
|
615
|
+
__actionName: 'TRIGGER_APPLICATION_FILTER'
|
|
616
|
+
params?: Array<
|
|
617
|
+
| {
|
|
618
|
+
input: 'name'
|
|
619
|
+
value?: string | DataLink | EventProperty
|
|
620
|
+
mapping?: string
|
|
621
|
+
}
|
|
622
|
+
| {
|
|
623
|
+
input: 'variables'
|
|
624
|
+
value?: any | EventProperty
|
|
625
|
+
mapping?: string
|
|
626
|
+
}
|
|
627
|
+
| {
|
|
628
|
+
input: 'result'
|
|
629
|
+
value?: string | DataLink | (() => Data) | EventProperty
|
|
630
|
+
mapping?: string
|
|
631
|
+
}
|
|
632
|
+
| {
|
|
633
|
+
input: 'error'
|
|
634
|
+
value?: string | DataLink | (() => Data) | EventProperty
|
|
635
|
+
mapping?: string
|
|
636
|
+
}
|
|
637
|
+
>
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
/* Stop running application AI filter */
|
|
641
|
+
export type SystemActionStopApplicationFilter = Action & {
|
|
642
|
+
__actionName: 'STOP_APPLICATION_FILTER'
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
/* Save update snapshot (from Application Filter or DevTools MCP Server) to media system */
|
|
646
|
+
export type SystemActionSaveUpdateSnapshot = ActionWithParams & {
|
|
647
|
+
__actionName: 'SAVE_UPDATE_SNAPSHOT'
|
|
648
|
+
params?: Array<
|
|
649
|
+
| {
|
|
650
|
+
input: 'snapshotFileIndentifier'
|
|
651
|
+
value?: string | DataLink | EventProperty
|
|
652
|
+
mapping?: string
|
|
653
|
+
}
|
|
654
|
+
| {
|
|
655
|
+
input: 'snapshotSaveResult'
|
|
656
|
+
value?: string | DataLink | (() => Data) | EventProperty
|
|
657
|
+
mapping?: string
|
|
658
|
+
}
|
|
659
|
+
| {
|
|
660
|
+
input: 'snapshotErrorResult'
|
|
661
|
+
value?: string | DataLink | (() => Data) | EventProperty
|
|
662
|
+
mapping?: string
|
|
663
|
+
}
|
|
664
|
+
>
|
|
665
|
+
}
|
package/utils/data.ts
CHANGED
|
@@ -64,6 +64,7 @@ type SystemDataName =
|
|
|
64
64
|
| 'workspaceName'
|
|
65
65
|
| 'applicationInfo'
|
|
66
66
|
| 'applicationName'
|
|
67
|
+
| 'deviceID'
|
|
67
68
|
| 'macAddress'
|
|
68
69
|
| 'bindDeviceCode'
|
|
69
70
|
| 'bindDeviceCodeExpire'
|
|
@@ -74,6 +75,10 @@ type SystemDataName =
|
|
|
74
75
|
| 'env'
|
|
75
76
|
| 'isViewDebugModeEnabled'
|
|
76
77
|
| 'language'
|
|
78
|
+
| 'aiFilters'
|
|
79
|
+
| 'systemOpenAIApiKey'
|
|
80
|
+
| 'systemAnthropicApiKey'
|
|
81
|
+
| 'systemGeminiApiKey'
|
|
77
82
|
|
|
78
83
|
type SystemDataInfo = {
|
|
79
84
|
name: SystemDataName
|
|
@@ -343,6 +348,14 @@ export const systemDataList: Array<SystemDataInfo> = [
|
|
|
343
348
|
type: 'string',
|
|
344
349
|
value: '',
|
|
345
350
|
},
|
|
351
|
+
{
|
|
352
|
+
name: 'deviceID',
|
|
353
|
+
id: 'PROPERTY_BANK_DATA_NODE_8b5c2d9e-f0a1-4b2c-8d3e-4f5a6b7c8d9e',
|
|
354
|
+
title: 'SYSTEM: Device ID',
|
|
355
|
+
description: 'Device ID of current device',
|
|
356
|
+
type: 'string',
|
|
357
|
+
value: 'unknown',
|
|
358
|
+
},
|
|
346
359
|
{
|
|
347
360
|
name: 'macAddress',
|
|
348
361
|
id: 'PROPERTY_BANK_DATA_NODE_f01fcc78-0723-11ed-ac00-877339de1030',
|
|
@@ -423,6 +436,38 @@ export const systemDataList: Array<SystemDataInfo> = [
|
|
|
423
436
|
type: 'string',
|
|
424
437
|
value: '',
|
|
425
438
|
},
|
|
439
|
+
{
|
|
440
|
+
name: 'aiFilters',
|
|
441
|
+
id: 'PROPERTY_BANK_DATA_NODE_3ffc1e98-8f65-4cc8-a949-3da8d2092ccb',
|
|
442
|
+
title: 'SYSTEM: AI Filters',
|
|
443
|
+
description: 'AI filters configuration from the application',
|
|
444
|
+
type: 'array',
|
|
445
|
+
value: [],
|
|
446
|
+
},
|
|
447
|
+
{
|
|
448
|
+
name: 'systemOpenAIApiKey',
|
|
449
|
+
id: 'PROPERTY_BANK_DATA_NODE_a1b2c3d4-5e6f-7890-abcd-ef1234567890',
|
|
450
|
+
title: 'SYSTEM: OpenAI API Key',
|
|
451
|
+
description: 'System OpenAI API Key (only available if application enabled)',
|
|
452
|
+
type: 'string',
|
|
453
|
+
value: '',
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
name: 'systemAnthropicApiKey',
|
|
457
|
+
id: 'PROPERTY_BANK_DATA_NODE_b2c3d4e5-6f78-9012-bcde-f23456789012',
|
|
458
|
+
title: 'SYSTEM: Anthropic API Key',
|
|
459
|
+
description: 'System Anthropic API Key (only available if application enabled)',
|
|
460
|
+
type: 'string',
|
|
461
|
+
value: '',
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
name: 'systemGeminiApiKey',
|
|
465
|
+
id: 'PROPERTY_BANK_DATA_NODE_c3d4e5f6-7890-1234-cdef-345678901234',
|
|
466
|
+
title: 'SYSTEM: Gemini API Key',
|
|
467
|
+
description: 'System Gemini API Key (only available if application enabled)',
|
|
468
|
+
type: 'string',
|
|
469
|
+
value: '',
|
|
470
|
+
},
|
|
426
471
|
]
|
|
427
472
|
|
|
428
473
|
export const useSystemData = (name: SystemDataName): Data => {
|
package/utils/event-props.ts
CHANGED
|
@@ -629,6 +629,7 @@ export const templateEventPropsMap = {
|
|
|
629
629
|
'GENERATOR_MCP_SERVER_SESSION_ID', // type: string
|
|
630
630
|
],
|
|
631
631
|
onRequestResource: [
|
|
632
|
+
'GENERATOR_MCP_SERVER_REQUEST_TYPE', // type: string
|
|
632
633
|
'GENERATOR_MCP_SERVER_REQUEST_ID', // type: string
|
|
633
634
|
'GENERATOR_MCP_SERVER_REQUEST_NAME', // type: string
|
|
634
635
|
'GENERATOR_MCP_SERVER_REQUEST_URI', // type: string
|
|
@@ -637,6 +638,7 @@ export const templateEventPropsMap = {
|
|
|
637
638
|
'GENERATOR_MCP_SERVER_REQUEST', // type: object
|
|
638
639
|
],
|
|
639
640
|
onCallTool: [
|
|
641
|
+
'GENERATOR_MCP_SERVER_REQUEST_TYPE', // type: string
|
|
640
642
|
'GENERATOR_MCP_SERVER_REQUEST_ID', // type: string
|
|
641
643
|
'GENERATOR_MCP_SERVER_REQUEST_NAME', // type: string
|
|
642
644
|
'GENERATOR_MCP_SERVER_REQUEST_VARIABLES', // type: object
|
|
@@ -644,6 +646,7 @@ export const templateEventPropsMap = {
|
|
|
644
646
|
'GENERATOR_MCP_SERVER_REQUEST', // type: object
|
|
645
647
|
],
|
|
646
648
|
onGetPrompt: [
|
|
649
|
+
'GENERATOR_MCP_SERVER_REQUEST_TYPE', // type: string
|
|
647
650
|
'GENERATOR_MCP_SERVER_REQUEST_ID', // type: string
|
|
648
651
|
'GENERATOR_MCP_SERVER_REQUEST_NAME', // type: string
|
|
649
652
|
'GENERATOR_MCP_SERVER_REQUEST_VARIABLES', // type: object
|
|
@@ -724,6 +727,16 @@ export const templateEventPropsMap = {
|
|
|
724
727
|
onContextStateChange: [
|
|
725
728
|
'GENERATOR_ONNX_LLM_CONTEXT_STATE', // type: string
|
|
726
729
|
],
|
|
730
|
+
onFunctionCall: [
|
|
731
|
+
'GENERATOR_ONNX_LLM_FUNCTION_CALL_NAME', // type: string
|
|
732
|
+
'GENERATOR_ONNX_LLM_FUNCTION_CALL_ARGUMENTS', // type: object
|
|
733
|
+
'GENERATOR_ONNX_LLM_FUNCTION_CALL_DETAILS', // type: object
|
|
734
|
+
],
|
|
735
|
+
onCompletionFinished: [
|
|
736
|
+
'GENERATOR_ONNX_LLM_COMPLETION_RESULT', // type: string
|
|
737
|
+
'GENERATOR_ONNX_LLM_COMPLETION_TOOL_CALLS', // type: array
|
|
738
|
+
'GENERATOR_ONNX_LLM_COMPLETION_FULL_CONTEXT', // type: string
|
|
739
|
+
],
|
|
727
740
|
onError: [
|
|
728
741
|
'GENERATOR_ONNX_LLM_ERROR', // type: string
|
|
729
742
|
],
|
|
@@ -751,6 +764,52 @@ export const templateEventPropsMap = {
|
|
|
751
764
|
'GENERATOR_SPEECH_INFERENCE_TRANSCRIBE_TIME', // type: number
|
|
752
765
|
],
|
|
753
766
|
},
|
|
767
|
+
GENERATOR_VAD_INFERENCE: {
|
|
768
|
+
onContextStateChange: [
|
|
769
|
+
'GENERATOR_VAD_INFERENCE_CONTEXT_STATE', // type: string
|
|
770
|
+
'GENERATOR_VAD_INFERENCE_CONTEXT_DETAILS', // type: object
|
|
771
|
+
],
|
|
772
|
+
onError: [
|
|
773
|
+
'GENERATOR_VAD_INFERENCE_ERROR', // type: string
|
|
774
|
+
],
|
|
775
|
+
onDetected: [
|
|
776
|
+
'GENERATOR_VAD_INFERENCE_DETECTION_SEGMENTS', // type: array
|
|
777
|
+
'GENERATOR_VAD_INFERENCE_DETECTION_TIME', // type: number
|
|
778
|
+
],
|
|
779
|
+
},
|
|
780
|
+
GENERATOR_REALTIME_TRANSCRIPTION: {
|
|
781
|
+
onTranscribe: [
|
|
782
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_TRANSCRIBE_EVENT', // type: object
|
|
783
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_TRANSCRIBE_TYPE', // type: string
|
|
784
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_TRANSCRIBE_SLICE_INDEX', // type: number
|
|
785
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_TRANSCRIBE_RESULT_TEXT', // type: string
|
|
786
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_TRANSCRIBE_IS_CAPTURING', // type: bool
|
|
787
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_VAD_EVENT', // type: object
|
|
788
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_VAD_TYPE', // type: string
|
|
789
|
+
],
|
|
790
|
+
onVad: [
|
|
791
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_VAD_EVENT', // type: object
|
|
792
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_VAD_EVENT_TYPE', // type: string
|
|
793
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_VAD_EVENT_CONFIDENCE', // type: number
|
|
794
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_VAD_EVENT_DURATION', // type: number
|
|
795
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_VAD_EVENT_SLICE_INDEX', // type: number
|
|
796
|
+
],
|
|
797
|
+
onError: [
|
|
798
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_ERROR', // type: string
|
|
799
|
+
],
|
|
800
|
+
onStatusChange: [
|
|
801
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_IS_ACTIVE', // type: bool
|
|
802
|
+
],
|
|
803
|
+
onStatsUpdate: [
|
|
804
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_STATS_TYPE', // type: string
|
|
805
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_STATS_TIMESTAMP', // type: number
|
|
806
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_STATS', // type: object
|
|
807
|
+
],
|
|
808
|
+
onEnd: [
|
|
809
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_END_RESULTS', // type: array
|
|
810
|
+
'GENERATOR_REALTIME_TRANSCRIPTION_END_AUDIO_OUTPUT_PATH', // type: string
|
|
811
|
+
],
|
|
812
|
+
},
|
|
754
813
|
GENERATOR_LLM: {
|
|
755
814
|
onContextStateChange: [
|
|
756
815
|
'GENERATOR_LLM_CONTEXT_STATE', // type: string
|
|
@@ -762,12 +821,14 @@ export const templateEventPropsMap = {
|
|
|
762
821
|
onCompletion: [
|
|
763
822
|
'GENERATOR_LLM_COMPLETION_SESSION_KEY', // type: string
|
|
764
823
|
'GENERATOR_LLM_COMPLETION_RESULT', // type: string
|
|
824
|
+
'GENERATOR_LLM_COMPLETION_REASONING_CONTENT', // type: string
|
|
765
825
|
'GENERATOR_LLM_COMPLETION_FULL_CONTEXT', // type: string
|
|
766
826
|
'GENERATOR_LLM_COMPLETION_RESULT_DETAILS', // type: object
|
|
767
827
|
],
|
|
768
828
|
onCompletionFinished: [
|
|
769
829
|
'GENERATOR_LLM_COMPLETION_SESSION_KEY', // type: string
|
|
770
830
|
'GENERATOR_LLM_COMPLETION_RESULT', // type: string
|
|
831
|
+
'GENERATOR_LLM_COMPLETION_REASONING_CONTENT', // type: string
|
|
771
832
|
'GENERATOR_LLM_COMPLETION_TOOL_CALLS', // type: array
|
|
772
833
|
'GENERATOR_LLM_COMPLETION_FULL_CONTEXT', // type: string
|
|
773
834
|
'GENERATOR_LLM_COMPLETION_IS_CONTEXT_FULL', // type: bool
|
|
@@ -776,11 +837,21 @@ export const templateEventPropsMap = {
|
|
|
776
837
|
],
|
|
777
838
|
onCompletionFunctionCall: [
|
|
778
839
|
'GENERATOR_LLM_COMPLETION_SESSION_KEY', // type: string
|
|
840
|
+
'GENERATOR_LLM_COMPLETION_FUNCTION_CALL_ID', // type: string
|
|
779
841
|
'GENERATOR_LLM_COMPLETION_FUNCTION_CALL_NAME', // type: string
|
|
780
842
|
'GENERATOR_LLM_COMPLETION_FUNCTION_ARGUMENTS', // type: object
|
|
781
843
|
'GENERATOR_LLM_COMPLETION_FUNCTION_DETAILS', // type: object
|
|
782
844
|
],
|
|
783
845
|
},
|
|
846
|
+
GENERATOR_GGML_TTS: {
|
|
847
|
+
onContextStateChange: [
|
|
848
|
+
'GENERATOR_GGML_TTS_CONTEXT_STATE', // type: string
|
|
849
|
+
],
|
|
850
|
+
onError: [
|
|
851
|
+
'GENERATOR_GGML_TTS_ERROR', // type: string
|
|
852
|
+
],
|
|
853
|
+
},
|
|
854
|
+
GENERATOR_RERANKER: {},
|
|
784
855
|
GENERATOR_QNN_LLM: {
|
|
785
856
|
onContextStateChange: [
|
|
786
857
|
'GENERATOR_QNN_LLM_CONTEXT_STATE', // type: string
|
|
@@ -788,6 +859,7 @@ export const templateEventPropsMap = {
|
|
|
788
859
|
onGenerate: [
|
|
789
860
|
'GENERATOR_QNN_LLM_RESULT', // type: string
|
|
790
861
|
'GENERATOR_QNN_LLM_FULL_CONTEXT', // type: string
|
|
862
|
+
'GENERATOR_QNN_LLM_TOOL_CALLS', // type: array
|
|
791
863
|
],
|
|
792
864
|
onFunctionCall: [
|
|
793
865
|
'GENERATOR_QNN_LLM_FUNCTION_CALL_NAME', // type: string
|
|
@@ -823,6 +895,23 @@ export const templateEventPropsMap = {
|
|
|
823
895
|
'GENERATOR_OPENAI_TTS_ERROR', // type: string
|
|
824
896
|
],
|
|
825
897
|
},
|
|
898
|
+
GENERATOR_ANTHROPIC_LLM: {
|
|
899
|
+
onError: [
|
|
900
|
+
'GENERATOR_ANTHROPIC_LLM_ERROR', // type: string
|
|
901
|
+
],
|
|
902
|
+
onCompletion: [
|
|
903
|
+
'GENERATOR_ANTHROPIC_LLM_COMPLETION_RESULT', // type: string
|
|
904
|
+
'GENERATOR_ANTHROPIC_LLM_COMPLETION_DETAILS', // type: object
|
|
905
|
+
],
|
|
906
|
+
onCompletionFinished: [
|
|
907
|
+
'GENERATOR_ANTHROPIC_LLM_COMPLETION_RESULT', // type: string
|
|
908
|
+
'GENERATOR_ANTHROPIC_LLM_TOOL_USES', // type: array
|
|
909
|
+
],
|
|
910
|
+
onToolUse: [
|
|
911
|
+
'GENERATOR_ANTHROPIC_LLM_TOOL_USE_NAME', // type: string
|
|
912
|
+
'GENERATOR_ANTHROPIC_LLM_TOOL_USE_INPUT', // type: object
|
|
913
|
+
],
|
|
914
|
+
},
|
|
826
915
|
GENERATOR_ASSISTANT: {
|
|
827
916
|
onError: [
|
|
828
917
|
'GENERATOR_ASSISTANT_ERROR', // type: string
|