@wildix/wilma-agents-client 1.0.43 → 1.0.44
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/dist-cjs/models/enums.js +11 -1
- package/dist-cjs/schemas/schemas_0.js +44 -57
- package/dist-es/models/enums.js +10 -0
- package/dist-es/schemas/schemas_0.js +40 -53
- package/dist-types/commands/CreateAgentCommand.d.ts +82 -34
- package/dist-types/commands/GetAgentCommand.d.ts +41 -17
- package/dist-types/commands/GetAgentVersionCommand.d.ts +41 -17
- package/dist-types/commands/ListAgentsCommand.d.ts +41 -17
- package/dist-types/commands/PublishAgentVersionCommand.d.ts +41 -17
- package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +41 -17
- package/dist-types/commands/UpdateAgentCommand.d.ts +82 -34
- package/dist-types/models/enums.d.ts +35 -0
- package/dist-types/models/models_0.d.ts +79 -111
- package/dist-types/schemas/schemas_0.d.ts +1 -4
- package/package.json +56 -56
|
@@ -79,6 +79,12 @@ declare const CreateAgentCommand_base: {
|
|
|
79
79
|
* action: { // VoiceTerminateAction Union: only one key present
|
|
80
80
|
* hangup: { // VoiceTerminateHangupAction
|
|
81
81
|
* message: "STRING_VALUE",
|
|
82
|
+
* messages: [ // AgentSpokenPhraseList
|
|
83
|
+
* { // AgentSpokenPhrase
|
|
84
|
+
* language: "STRING_VALUE", // required
|
|
85
|
+
* text: "STRING_VALUE", // required
|
|
86
|
+
* },
|
|
87
|
+
* ],
|
|
82
88
|
* },
|
|
83
89
|
* transfer: { // VoiceTransferTarget
|
|
84
90
|
* name: "STRING_VALUE", // required
|
|
@@ -93,6 +99,12 @@ declare const CreateAgentCommand_base: {
|
|
|
93
99
|
* action: {// Union: only one key present
|
|
94
100
|
* hangup: {
|
|
95
101
|
* message: "STRING_VALUE",
|
|
102
|
+
* messages: [
|
|
103
|
+
* {
|
|
104
|
+
* language: "STRING_VALUE", // required
|
|
105
|
+
* text: "STRING_VALUE", // required
|
|
106
|
+
* },
|
|
107
|
+
* ],
|
|
96
108
|
* },
|
|
97
109
|
* transfer: {
|
|
98
110
|
* name: "STRING_VALUE", // required
|
|
@@ -133,23 +145,6 @@ declare const CreateAgentCommand_base: {
|
|
|
133
145
|
* ],
|
|
134
146
|
* placeholder: "STRING_VALUE",
|
|
135
147
|
* },
|
|
136
|
-
* audio: { // AssistantAudioSettings
|
|
137
|
-
* enabled: true || false, // required
|
|
138
|
-
* engine: "STRING_VALUE",
|
|
139
|
-
* speech: { // AssistantSpeechSettings
|
|
140
|
-
* languages: [ // AssistantLanguageList // required
|
|
141
|
-
* { // AssistantLanguage
|
|
142
|
-
* code: "STRING_VALUE", // required
|
|
143
|
-
* voice: "STRING_VALUE", // required
|
|
144
|
-
* isDefault: true || false,
|
|
145
|
-
* },
|
|
146
|
-
* ],
|
|
147
|
-
* transcription: { // AssistantTranscriptionSettings
|
|
148
|
-
* engine: "STRING_VALUE",
|
|
149
|
-
* autoDetect: true || false,
|
|
150
|
-
* },
|
|
151
|
-
* },
|
|
152
|
-
* },
|
|
153
148
|
* },
|
|
154
149
|
* },
|
|
155
150
|
* engine: { // AgentEngine Union: only one key present
|
|
@@ -194,6 +189,12 @@ declare const CreateAgentCommand_base: {
|
|
|
194
189
|
* },
|
|
195
190
|
* ],
|
|
196
191
|
* startMessage: "STRING_VALUE",
|
|
192
|
+
* startMessages: [
|
|
193
|
+
* {
|
|
194
|
+
* language: "STRING_VALUE", // required
|
|
195
|
+
* text: "STRING_VALUE", // required
|
|
196
|
+
* },
|
|
197
|
+
* ],
|
|
197
198
|
* pipeline: { // AgentToolPipeline
|
|
198
199
|
* type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
199
200
|
* instructions: "STRING_VALUE",
|
|
@@ -224,6 +225,12 @@ declare const CreateAgentCommand_base: {
|
|
|
224
225
|
* connector: { // AgentConnectorCapability
|
|
225
226
|
* id: "STRING_VALUE", // required
|
|
226
227
|
* startMessage: "STRING_VALUE",
|
|
228
|
+
* startMessages: [
|
|
229
|
+
* {
|
|
230
|
+
* language: "STRING_VALUE", // required
|
|
231
|
+
* text: "STRING_VALUE", // required
|
|
232
|
+
* },
|
|
233
|
+
* ],
|
|
227
234
|
* pipeline: {
|
|
228
235
|
* type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
229
236
|
* instructions: "STRING_VALUE",
|
|
@@ -254,6 +261,9 @@ declare const CreateAgentCommand_base: {
|
|
|
254
261
|
* kb: { // AgentKnowledgeBase
|
|
255
262
|
* knowledgeBaseId: "STRING_VALUE",
|
|
256
263
|
* instructions: "STRING_VALUE",
|
|
264
|
+
* searchStrategy: "bm25" || "vector" || "hybrid",
|
|
265
|
+
* searchThreshold: "low" || "medium" || "high",
|
|
266
|
+
* searchLimit: Number("int"),
|
|
257
267
|
* channels: [
|
|
258
268
|
* "voice" || "chat" || "assistant",
|
|
259
269
|
* ],
|
|
@@ -410,6 +420,7 @@ declare const CreateAgentCommand_base: {
|
|
|
410
420
|
* },
|
|
411
421
|
* suggestions: { // AgentSuggestionsCapability
|
|
412
422
|
* name: "STRING_VALUE",
|
|
423
|
+
* instructions: "STRING_VALUE",
|
|
413
424
|
* channels: "<AgentCapabilityChannelsList>",
|
|
414
425
|
* annotations: "<AgentToolAnnotationsList>",
|
|
415
426
|
* },
|
|
@@ -427,6 +438,12 @@ declare const CreateAgentCommand_base: {
|
|
|
427
438
|
* name: "STRING_VALUE",
|
|
428
439
|
* description: "STRING_VALUE",
|
|
429
440
|
* message: "STRING_VALUE",
|
|
441
|
+
* messages: [
|
|
442
|
+
* {
|
|
443
|
+
* language: "STRING_VALUE", // required
|
|
444
|
+
* text: "STRING_VALUE", // required
|
|
445
|
+
* },
|
|
446
|
+
* ],
|
|
430
447
|
* channels: "<AgentCapabilityChannelsList>",
|
|
431
448
|
* annotations: "<AgentToolAnnotationsList>",
|
|
432
449
|
* },
|
|
@@ -485,6 +502,7 @@ declare const CreateAgentCommand_base: {
|
|
|
485
502
|
* },
|
|
486
503
|
* ],
|
|
487
504
|
* startMessage: "STRING_VALUE",
|
|
505
|
+
* startMessages: "<AgentSpokenPhraseList>",
|
|
488
506
|
* pipeline: {
|
|
489
507
|
* type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
490
508
|
* instructions: "STRING_VALUE",
|
|
@@ -498,6 +516,7 @@ declare const CreateAgentCommand_base: {
|
|
|
498
516
|
* connector: {
|
|
499
517
|
* id: "STRING_VALUE", // required
|
|
500
518
|
* startMessage: "STRING_VALUE",
|
|
519
|
+
* startMessages: "<AgentSpokenPhraseList>",
|
|
501
520
|
* pipeline: {
|
|
502
521
|
* type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
503
522
|
* instructions: "STRING_VALUE",
|
|
@@ -586,6 +605,7 @@ declare const CreateAgentCommand_base: {
|
|
|
586
605
|
* name: "STRING_VALUE",
|
|
587
606
|
* description: "STRING_VALUE",
|
|
588
607
|
* message: "STRING_VALUE",
|
|
608
|
+
* messages: "<AgentSpokenPhraseList>",
|
|
589
609
|
* channels: "<AgentCapabilityChannelsList>",
|
|
590
610
|
* annotations: "<AgentToolAnnotationsList>",
|
|
591
611
|
* },
|
|
@@ -664,6 +684,9 @@ declare const CreateAgentCommand_base: {
|
|
|
664
684
|
* kb: {
|
|
665
685
|
* knowledgeBaseId: "STRING_VALUE",
|
|
666
686
|
* instructions: "STRING_VALUE",
|
|
687
|
+
* searchStrategy: "bm25" || "vector" || "hybrid",
|
|
688
|
+
* searchThreshold: "low" || "medium" || "high",
|
|
689
|
+
* searchLimit: Number("int"),
|
|
667
690
|
* channels: "<AgentCapabilityChannelsList>",
|
|
668
691
|
* annotations: "<AgentToolAnnotationsList>",
|
|
669
692
|
* },
|
|
@@ -701,6 +724,7 @@ declare const CreateAgentCommand_base: {
|
|
|
701
724
|
* transfer: "<AgentTransferCapability>",
|
|
702
725
|
* suggestions: {
|
|
703
726
|
* name: "STRING_VALUE",
|
|
727
|
+
* instructions: "STRING_VALUE",
|
|
704
728
|
* channels: "<AgentCapabilityChannelsList>",
|
|
705
729
|
* annotations: "<AgentToolAnnotationsList>",
|
|
706
730
|
* },
|
|
@@ -942,6 +966,12 @@ declare const CreateAgentCommand_base: {
|
|
|
942
966
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
943
967
|
* // hangup: { // VoiceTerminateHangupAction
|
|
944
968
|
* // message: "STRING_VALUE",
|
|
969
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
970
|
+
* // { // AgentSpokenPhrase
|
|
971
|
+
* // language: "STRING_VALUE", // required
|
|
972
|
+
* // text: "STRING_VALUE", // required
|
|
973
|
+
* // },
|
|
974
|
+
* // ],
|
|
945
975
|
* // },
|
|
946
976
|
* // transfer: { // VoiceTransferTarget
|
|
947
977
|
* // name: "STRING_VALUE", // required
|
|
@@ -956,6 +986,12 @@ declare const CreateAgentCommand_base: {
|
|
|
956
986
|
* // action: {// Union: only one key present
|
|
957
987
|
* // hangup: {
|
|
958
988
|
* // message: "STRING_VALUE",
|
|
989
|
+
* // messages: [
|
|
990
|
+
* // {
|
|
991
|
+
* // language: "STRING_VALUE", // required
|
|
992
|
+
* // text: "STRING_VALUE", // required
|
|
993
|
+
* // },
|
|
994
|
+
* // ],
|
|
959
995
|
* // },
|
|
960
996
|
* // transfer: {
|
|
961
997
|
* // name: "STRING_VALUE", // required
|
|
@@ -996,23 +1032,6 @@ declare const CreateAgentCommand_base: {
|
|
|
996
1032
|
* // ],
|
|
997
1033
|
* // placeholder: "STRING_VALUE",
|
|
998
1034
|
* // },
|
|
999
|
-
* // audio: { // AssistantAudioSettings
|
|
1000
|
-
* // enabled: true || false, // required
|
|
1001
|
-
* // engine: "STRING_VALUE",
|
|
1002
|
-
* // speech: { // AssistantSpeechSettings
|
|
1003
|
-
* // languages: [ // AssistantLanguageList // required
|
|
1004
|
-
* // { // AssistantLanguage
|
|
1005
|
-
* // code: "STRING_VALUE", // required
|
|
1006
|
-
* // voice: "STRING_VALUE", // required
|
|
1007
|
-
* // isDefault: true || false,
|
|
1008
|
-
* // },
|
|
1009
|
-
* // ],
|
|
1010
|
-
* // transcription: { // AssistantTranscriptionSettings
|
|
1011
|
-
* // engine: "STRING_VALUE",
|
|
1012
|
-
* // autoDetect: true || false,
|
|
1013
|
-
* // },
|
|
1014
|
-
* // },
|
|
1015
|
-
* // },
|
|
1016
1035
|
* // },
|
|
1017
1036
|
* // },
|
|
1018
1037
|
* // engine: { // AgentEngine Union: only one key present
|
|
@@ -1057,6 +1076,12 @@ declare const CreateAgentCommand_base: {
|
|
|
1057
1076
|
* // },
|
|
1058
1077
|
* // ],
|
|
1059
1078
|
* // startMessage: "STRING_VALUE",
|
|
1079
|
+
* // startMessages: [
|
|
1080
|
+
* // {
|
|
1081
|
+
* // language: "STRING_VALUE", // required
|
|
1082
|
+
* // text: "STRING_VALUE", // required
|
|
1083
|
+
* // },
|
|
1084
|
+
* // ],
|
|
1060
1085
|
* // pipeline: { // AgentToolPipeline
|
|
1061
1086
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
1062
1087
|
* // instructions: "STRING_VALUE",
|
|
@@ -1087,6 +1112,12 @@ declare const CreateAgentCommand_base: {
|
|
|
1087
1112
|
* // connector: { // AgentConnectorCapability
|
|
1088
1113
|
* // id: "STRING_VALUE", // required
|
|
1089
1114
|
* // startMessage: "STRING_VALUE",
|
|
1115
|
+
* // startMessages: [
|
|
1116
|
+
* // {
|
|
1117
|
+
* // language: "STRING_VALUE", // required
|
|
1118
|
+
* // text: "STRING_VALUE", // required
|
|
1119
|
+
* // },
|
|
1120
|
+
* // ],
|
|
1090
1121
|
* // pipeline: {
|
|
1091
1122
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
1092
1123
|
* // instructions: "STRING_VALUE",
|
|
@@ -1117,6 +1148,9 @@ declare const CreateAgentCommand_base: {
|
|
|
1117
1148
|
* // kb: { // AgentKnowledgeBase
|
|
1118
1149
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
1119
1150
|
* // instructions: "STRING_VALUE",
|
|
1151
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
1152
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
1153
|
+
* // searchLimit: Number("int"),
|
|
1120
1154
|
* // channels: [
|
|
1121
1155
|
* // "voice" || "chat" || "assistant",
|
|
1122
1156
|
* // ],
|
|
@@ -1273,6 +1307,7 @@ declare const CreateAgentCommand_base: {
|
|
|
1273
1307
|
* // },
|
|
1274
1308
|
* // suggestions: { // AgentSuggestionsCapability
|
|
1275
1309
|
* // name: "STRING_VALUE",
|
|
1310
|
+
* // instructions: "STRING_VALUE",
|
|
1276
1311
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
1277
1312
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
1278
1313
|
* // },
|
|
@@ -1290,6 +1325,12 @@ declare const CreateAgentCommand_base: {
|
|
|
1290
1325
|
* // name: "STRING_VALUE",
|
|
1291
1326
|
* // description: "STRING_VALUE",
|
|
1292
1327
|
* // message: "STRING_VALUE",
|
|
1328
|
+
* // messages: [
|
|
1329
|
+
* // {
|
|
1330
|
+
* // language: "STRING_VALUE", // required
|
|
1331
|
+
* // text: "STRING_VALUE", // required
|
|
1332
|
+
* // },
|
|
1333
|
+
* // ],
|
|
1293
1334
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
1294
1335
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
1295
1336
|
* // },
|
|
@@ -1348,6 +1389,7 @@ declare const CreateAgentCommand_base: {
|
|
|
1348
1389
|
* // },
|
|
1349
1390
|
* // ],
|
|
1350
1391
|
* // startMessage: "STRING_VALUE",
|
|
1392
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
1351
1393
|
* // pipeline: {
|
|
1352
1394
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
1353
1395
|
* // instructions: "STRING_VALUE",
|
|
@@ -1361,6 +1403,7 @@ declare const CreateAgentCommand_base: {
|
|
|
1361
1403
|
* // connector: {
|
|
1362
1404
|
* // id: "STRING_VALUE", // required
|
|
1363
1405
|
* // startMessage: "STRING_VALUE",
|
|
1406
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
1364
1407
|
* // pipeline: {
|
|
1365
1408
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
1366
1409
|
* // instructions: "STRING_VALUE",
|
|
@@ -1449,6 +1492,7 @@ declare const CreateAgentCommand_base: {
|
|
|
1449
1492
|
* // name: "STRING_VALUE",
|
|
1450
1493
|
* // description: "STRING_VALUE",
|
|
1451
1494
|
* // message: "STRING_VALUE",
|
|
1495
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
1452
1496
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
1453
1497
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
1454
1498
|
* // },
|
|
@@ -1527,6 +1571,9 @@ declare const CreateAgentCommand_base: {
|
|
|
1527
1571
|
* // kb: {
|
|
1528
1572
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
1529
1573
|
* // instructions: "STRING_VALUE",
|
|
1574
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
1575
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
1576
|
+
* // searchLimit: Number("int"),
|
|
1530
1577
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
1531
1578
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
1532
1579
|
* // },
|
|
@@ -1564,6 +1611,7 @@ declare const CreateAgentCommand_base: {
|
|
|
1564
1611
|
* // transfer: "<AgentTransferCapability>",
|
|
1565
1612
|
* // suggestions: {
|
|
1566
1613
|
* // name: "STRING_VALUE",
|
|
1614
|
+
* // instructions: "STRING_VALUE",
|
|
1567
1615
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
1568
1616
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
1569
1617
|
* // },
|
|
@@ -86,6 +86,12 @@ declare const GetAgentCommand_base: {
|
|
|
86
86
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
87
87
|
* // hangup: { // VoiceTerminateHangupAction
|
|
88
88
|
* // message: "STRING_VALUE",
|
|
89
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
90
|
+
* // { // AgentSpokenPhrase
|
|
91
|
+
* // language: "STRING_VALUE", // required
|
|
92
|
+
* // text: "STRING_VALUE", // required
|
|
93
|
+
* // },
|
|
94
|
+
* // ],
|
|
89
95
|
* // },
|
|
90
96
|
* // transfer: { // VoiceTransferTarget
|
|
91
97
|
* // name: "STRING_VALUE", // required
|
|
@@ -100,6 +106,12 @@ declare const GetAgentCommand_base: {
|
|
|
100
106
|
* // action: {// Union: only one key present
|
|
101
107
|
* // hangup: {
|
|
102
108
|
* // message: "STRING_VALUE",
|
|
109
|
+
* // messages: [
|
|
110
|
+
* // {
|
|
111
|
+
* // language: "STRING_VALUE", // required
|
|
112
|
+
* // text: "STRING_VALUE", // required
|
|
113
|
+
* // },
|
|
114
|
+
* // ],
|
|
103
115
|
* // },
|
|
104
116
|
* // transfer: {
|
|
105
117
|
* // name: "STRING_VALUE", // required
|
|
@@ -140,23 +152,6 @@ declare const GetAgentCommand_base: {
|
|
|
140
152
|
* // ],
|
|
141
153
|
* // placeholder: "STRING_VALUE",
|
|
142
154
|
* // },
|
|
143
|
-
* // audio: { // AssistantAudioSettings
|
|
144
|
-
* // enabled: true || false, // required
|
|
145
|
-
* // engine: "STRING_VALUE",
|
|
146
|
-
* // speech: { // AssistantSpeechSettings
|
|
147
|
-
* // languages: [ // AssistantLanguageList // required
|
|
148
|
-
* // { // AssistantLanguage
|
|
149
|
-
* // code: "STRING_VALUE", // required
|
|
150
|
-
* // voice: "STRING_VALUE", // required
|
|
151
|
-
* // isDefault: true || false,
|
|
152
|
-
* // },
|
|
153
|
-
* // ],
|
|
154
|
-
* // transcription: { // AssistantTranscriptionSettings
|
|
155
|
-
* // engine: "STRING_VALUE",
|
|
156
|
-
* // autoDetect: true || false,
|
|
157
|
-
* // },
|
|
158
|
-
* // },
|
|
159
|
-
* // },
|
|
160
155
|
* // },
|
|
161
156
|
* // },
|
|
162
157
|
* // engine: { // AgentEngine Union: only one key present
|
|
@@ -201,6 +196,12 @@ declare const GetAgentCommand_base: {
|
|
|
201
196
|
* // },
|
|
202
197
|
* // ],
|
|
203
198
|
* // startMessage: "STRING_VALUE",
|
|
199
|
+
* // startMessages: [
|
|
200
|
+
* // {
|
|
201
|
+
* // language: "STRING_VALUE", // required
|
|
202
|
+
* // text: "STRING_VALUE", // required
|
|
203
|
+
* // },
|
|
204
|
+
* // ],
|
|
204
205
|
* // pipeline: { // AgentToolPipeline
|
|
205
206
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
206
207
|
* // instructions: "STRING_VALUE",
|
|
@@ -231,6 +232,12 @@ declare const GetAgentCommand_base: {
|
|
|
231
232
|
* // connector: { // AgentConnectorCapability
|
|
232
233
|
* // id: "STRING_VALUE", // required
|
|
233
234
|
* // startMessage: "STRING_VALUE",
|
|
235
|
+
* // startMessages: [
|
|
236
|
+
* // {
|
|
237
|
+
* // language: "STRING_VALUE", // required
|
|
238
|
+
* // text: "STRING_VALUE", // required
|
|
239
|
+
* // },
|
|
240
|
+
* // ],
|
|
234
241
|
* // pipeline: {
|
|
235
242
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
236
243
|
* // instructions: "STRING_VALUE",
|
|
@@ -261,6 +268,9 @@ declare const GetAgentCommand_base: {
|
|
|
261
268
|
* // kb: { // AgentKnowledgeBase
|
|
262
269
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
263
270
|
* // instructions: "STRING_VALUE",
|
|
271
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
272
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
273
|
+
* // searchLimit: Number("int"),
|
|
264
274
|
* // channels: [
|
|
265
275
|
* // "voice" || "chat" || "assistant",
|
|
266
276
|
* // ],
|
|
@@ -417,6 +427,7 @@ declare const GetAgentCommand_base: {
|
|
|
417
427
|
* // },
|
|
418
428
|
* // suggestions: { // AgentSuggestionsCapability
|
|
419
429
|
* // name: "STRING_VALUE",
|
|
430
|
+
* // instructions: "STRING_VALUE",
|
|
420
431
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
421
432
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
422
433
|
* // },
|
|
@@ -434,6 +445,12 @@ declare const GetAgentCommand_base: {
|
|
|
434
445
|
* // name: "STRING_VALUE",
|
|
435
446
|
* // description: "STRING_VALUE",
|
|
436
447
|
* // message: "STRING_VALUE",
|
|
448
|
+
* // messages: [
|
|
449
|
+
* // {
|
|
450
|
+
* // language: "STRING_VALUE", // required
|
|
451
|
+
* // text: "STRING_VALUE", // required
|
|
452
|
+
* // },
|
|
453
|
+
* // ],
|
|
437
454
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
438
455
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
439
456
|
* // },
|
|
@@ -492,6 +509,7 @@ declare const GetAgentCommand_base: {
|
|
|
492
509
|
* // },
|
|
493
510
|
* // ],
|
|
494
511
|
* // startMessage: "STRING_VALUE",
|
|
512
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
495
513
|
* // pipeline: {
|
|
496
514
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
497
515
|
* // instructions: "STRING_VALUE",
|
|
@@ -505,6 +523,7 @@ declare const GetAgentCommand_base: {
|
|
|
505
523
|
* // connector: {
|
|
506
524
|
* // id: "STRING_VALUE", // required
|
|
507
525
|
* // startMessage: "STRING_VALUE",
|
|
526
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
508
527
|
* // pipeline: {
|
|
509
528
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
510
529
|
* // instructions: "STRING_VALUE",
|
|
@@ -593,6 +612,7 @@ declare const GetAgentCommand_base: {
|
|
|
593
612
|
* // name: "STRING_VALUE",
|
|
594
613
|
* // description: "STRING_VALUE",
|
|
595
614
|
* // message: "STRING_VALUE",
|
|
615
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
596
616
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
597
617
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
598
618
|
* // },
|
|
@@ -671,6 +691,9 @@ declare const GetAgentCommand_base: {
|
|
|
671
691
|
* // kb: {
|
|
672
692
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
673
693
|
* // instructions: "STRING_VALUE",
|
|
694
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
695
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
696
|
+
* // searchLimit: Number("int"),
|
|
674
697
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
675
698
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
676
699
|
* // },
|
|
@@ -708,6 +731,7 @@ declare const GetAgentCommand_base: {
|
|
|
708
731
|
* // transfer: "<AgentTransferCapability>",
|
|
709
732
|
* // suggestions: {
|
|
710
733
|
* // name: "STRING_VALUE",
|
|
734
|
+
* // instructions: "STRING_VALUE",
|
|
711
735
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
712
736
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
713
737
|
* // },
|
|
@@ -93,6 +93,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
93
93
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
94
94
|
* // hangup: { // VoiceTerminateHangupAction
|
|
95
95
|
* // message: "STRING_VALUE",
|
|
96
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
97
|
+
* // { // AgentSpokenPhrase
|
|
98
|
+
* // language: "STRING_VALUE", // required
|
|
99
|
+
* // text: "STRING_VALUE", // required
|
|
100
|
+
* // },
|
|
101
|
+
* // ],
|
|
96
102
|
* // },
|
|
97
103
|
* // transfer: { // VoiceTransferTarget
|
|
98
104
|
* // name: "STRING_VALUE", // required
|
|
@@ -107,6 +113,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
107
113
|
* // action: {// Union: only one key present
|
|
108
114
|
* // hangup: {
|
|
109
115
|
* // message: "STRING_VALUE",
|
|
116
|
+
* // messages: [
|
|
117
|
+
* // {
|
|
118
|
+
* // language: "STRING_VALUE", // required
|
|
119
|
+
* // text: "STRING_VALUE", // required
|
|
120
|
+
* // },
|
|
121
|
+
* // ],
|
|
110
122
|
* // },
|
|
111
123
|
* // transfer: {
|
|
112
124
|
* // name: "STRING_VALUE", // required
|
|
@@ -147,23 +159,6 @@ declare const GetAgentVersionCommand_base: {
|
|
|
147
159
|
* // ],
|
|
148
160
|
* // placeholder: "STRING_VALUE",
|
|
149
161
|
* // },
|
|
150
|
-
* // audio: { // AssistantAudioSettings
|
|
151
|
-
* // enabled: true || false, // required
|
|
152
|
-
* // engine: "STRING_VALUE",
|
|
153
|
-
* // speech: { // AssistantSpeechSettings
|
|
154
|
-
* // languages: [ // AssistantLanguageList // required
|
|
155
|
-
* // { // AssistantLanguage
|
|
156
|
-
* // code: "STRING_VALUE", // required
|
|
157
|
-
* // voice: "STRING_VALUE", // required
|
|
158
|
-
* // isDefault: true || false,
|
|
159
|
-
* // },
|
|
160
|
-
* // ],
|
|
161
|
-
* // transcription: { // AssistantTranscriptionSettings
|
|
162
|
-
* // engine: "STRING_VALUE",
|
|
163
|
-
* // autoDetect: true || false,
|
|
164
|
-
* // },
|
|
165
|
-
* // },
|
|
166
|
-
* // },
|
|
167
162
|
* // },
|
|
168
163
|
* // },
|
|
169
164
|
* // engine: { // AgentEngine Union: only one key present
|
|
@@ -208,6 +203,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
208
203
|
* // },
|
|
209
204
|
* // ],
|
|
210
205
|
* // startMessage: "STRING_VALUE",
|
|
206
|
+
* // startMessages: [
|
|
207
|
+
* // {
|
|
208
|
+
* // language: "STRING_VALUE", // required
|
|
209
|
+
* // text: "STRING_VALUE", // required
|
|
210
|
+
* // },
|
|
211
|
+
* // ],
|
|
211
212
|
* // pipeline: { // AgentToolPipeline
|
|
212
213
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
213
214
|
* // instructions: "STRING_VALUE",
|
|
@@ -238,6 +239,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
238
239
|
* // connector: { // AgentConnectorCapability
|
|
239
240
|
* // id: "STRING_VALUE", // required
|
|
240
241
|
* // startMessage: "STRING_VALUE",
|
|
242
|
+
* // startMessages: [
|
|
243
|
+
* // {
|
|
244
|
+
* // language: "STRING_VALUE", // required
|
|
245
|
+
* // text: "STRING_VALUE", // required
|
|
246
|
+
* // },
|
|
247
|
+
* // ],
|
|
241
248
|
* // pipeline: {
|
|
242
249
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
243
250
|
* // instructions: "STRING_VALUE",
|
|
@@ -268,6 +275,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
268
275
|
* // kb: { // AgentKnowledgeBase
|
|
269
276
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
270
277
|
* // instructions: "STRING_VALUE",
|
|
278
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
279
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
280
|
+
* // searchLimit: Number("int"),
|
|
271
281
|
* // channels: [
|
|
272
282
|
* // "voice" || "chat" || "assistant",
|
|
273
283
|
* // ],
|
|
@@ -424,6 +434,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
424
434
|
* // },
|
|
425
435
|
* // suggestions: { // AgentSuggestionsCapability
|
|
426
436
|
* // name: "STRING_VALUE",
|
|
437
|
+
* // instructions: "STRING_VALUE",
|
|
427
438
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
428
439
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
429
440
|
* // },
|
|
@@ -441,6 +452,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
441
452
|
* // name: "STRING_VALUE",
|
|
442
453
|
* // description: "STRING_VALUE",
|
|
443
454
|
* // message: "STRING_VALUE",
|
|
455
|
+
* // messages: [
|
|
456
|
+
* // {
|
|
457
|
+
* // language: "STRING_VALUE", // required
|
|
458
|
+
* // text: "STRING_VALUE", // required
|
|
459
|
+
* // },
|
|
460
|
+
* // ],
|
|
444
461
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
445
462
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
446
463
|
* // },
|
|
@@ -499,6 +516,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
499
516
|
* // },
|
|
500
517
|
* // ],
|
|
501
518
|
* // startMessage: "STRING_VALUE",
|
|
519
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
502
520
|
* // pipeline: {
|
|
503
521
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
504
522
|
* // instructions: "STRING_VALUE",
|
|
@@ -512,6 +530,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
512
530
|
* // connector: {
|
|
513
531
|
* // id: "STRING_VALUE", // required
|
|
514
532
|
* // startMessage: "STRING_VALUE",
|
|
533
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
515
534
|
* // pipeline: {
|
|
516
535
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
517
536
|
* // instructions: "STRING_VALUE",
|
|
@@ -600,6 +619,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
600
619
|
* // name: "STRING_VALUE",
|
|
601
620
|
* // description: "STRING_VALUE",
|
|
602
621
|
* // message: "STRING_VALUE",
|
|
622
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
603
623
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
604
624
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
605
625
|
* // },
|
|
@@ -678,6 +698,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
678
698
|
* // kb: {
|
|
679
699
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
680
700
|
* // instructions: "STRING_VALUE",
|
|
701
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
702
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
703
|
+
* // searchLimit: Number("int"),
|
|
681
704
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
682
705
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
683
706
|
* // },
|
|
@@ -715,6 +738,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
715
738
|
* // transfer: "<AgentTransferCapability>",
|
|
716
739
|
* // suggestions: {
|
|
717
740
|
* // name: "STRING_VALUE",
|
|
741
|
+
* // instructions: "STRING_VALUE",
|
|
718
742
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
719
743
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
720
744
|
* // },
|