@wildix/wilma-agents-client 1.0.42 → 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 +38 -22
- package/dist-es/models/enums.js +10 -0
- package/dist-es/schemas/schemas_0.js +34 -18
- package/dist-types/commands/CreateAgentCommand.d.ts +82 -0
- package/dist-types/commands/GetAgentCommand.d.ts +41 -0
- package/dist-types/commands/GetAgentVersionCommand.d.ts +41 -0
- package/dist-types/commands/ListAgentsCommand.d.ts +41 -0
- package/dist-types/commands/PublishAgentVersionCommand.d.ts +41 -0
- package/dist-types/commands/RestoreAgentVersionToDraftCommand.d.ts +41 -0
- package/dist-types/commands/UpdateAgentCommand.d.ts +82 -0
- package/dist-types/models/enums.d.ts +35 -0
- package/dist-types/models/models_0.d.ts +79 -5
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/package.json +56 -56
|
@@ -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
|
|
@@ -184,6 +196,12 @@ declare const GetAgentCommand_base: {
|
|
|
184
196
|
* // },
|
|
185
197
|
* // ],
|
|
186
198
|
* // startMessage: "STRING_VALUE",
|
|
199
|
+
* // startMessages: [
|
|
200
|
+
* // {
|
|
201
|
+
* // language: "STRING_VALUE", // required
|
|
202
|
+
* // text: "STRING_VALUE", // required
|
|
203
|
+
* // },
|
|
204
|
+
* // ],
|
|
187
205
|
* // pipeline: { // AgentToolPipeline
|
|
188
206
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
189
207
|
* // instructions: "STRING_VALUE",
|
|
@@ -214,6 +232,12 @@ declare const GetAgentCommand_base: {
|
|
|
214
232
|
* // connector: { // AgentConnectorCapability
|
|
215
233
|
* // id: "STRING_VALUE", // required
|
|
216
234
|
* // startMessage: "STRING_VALUE",
|
|
235
|
+
* // startMessages: [
|
|
236
|
+
* // {
|
|
237
|
+
* // language: "STRING_VALUE", // required
|
|
238
|
+
* // text: "STRING_VALUE", // required
|
|
239
|
+
* // },
|
|
240
|
+
* // ],
|
|
217
241
|
* // pipeline: {
|
|
218
242
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
219
243
|
* // instructions: "STRING_VALUE",
|
|
@@ -244,6 +268,9 @@ declare const GetAgentCommand_base: {
|
|
|
244
268
|
* // kb: { // AgentKnowledgeBase
|
|
245
269
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
246
270
|
* // instructions: "STRING_VALUE",
|
|
271
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
272
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
273
|
+
* // searchLimit: Number("int"),
|
|
247
274
|
* // channels: [
|
|
248
275
|
* // "voice" || "chat" || "assistant",
|
|
249
276
|
* // ],
|
|
@@ -400,6 +427,7 @@ declare const GetAgentCommand_base: {
|
|
|
400
427
|
* // },
|
|
401
428
|
* // suggestions: { // AgentSuggestionsCapability
|
|
402
429
|
* // name: "STRING_VALUE",
|
|
430
|
+
* // instructions: "STRING_VALUE",
|
|
403
431
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
404
432
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
405
433
|
* // },
|
|
@@ -417,6 +445,12 @@ declare const GetAgentCommand_base: {
|
|
|
417
445
|
* // name: "STRING_VALUE",
|
|
418
446
|
* // description: "STRING_VALUE",
|
|
419
447
|
* // message: "STRING_VALUE",
|
|
448
|
+
* // messages: [
|
|
449
|
+
* // {
|
|
450
|
+
* // language: "STRING_VALUE", // required
|
|
451
|
+
* // text: "STRING_VALUE", // required
|
|
452
|
+
* // },
|
|
453
|
+
* // ],
|
|
420
454
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
421
455
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
422
456
|
* // },
|
|
@@ -475,6 +509,7 @@ declare const GetAgentCommand_base: {
|
|
|
475
509
|
* // },
|
|
476
510
|
* // ],
|
|
477
511
|
* // startMessage: "STRING_VALUE",
|
|
512
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
478
513
|
* // pipeline: {
|
|
479
514
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
480
515
|
* // instructions: "STRING_VALUE",
|
|
@@ -488,6 +523,7 @@ declare const GetAgentCommand_base: {
|
|
|
488
523
|
* // connector: {
|
|
489
524
|
* // id: "STRING_VALUE", // required
|
|
490
525
|
* // startMessage: "STRING_VALUE",
|
|
526
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
491
527
|
* // pipeline: {
|
|
492
528
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
493
529
|
* // instructions: "STRING_VALUE",
|
|
@@ -576,6 +612,7 @@ declare const GetAgentCommand_base: {
|
|
|
576
612
|
* // name: "STRING_VALUE",
|
|
577
613
|
* // description: "STRING_VALUE",
|
|
578
614
|
* // message: "STRING_VALUE",
|
|
615
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
579
616
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
580
617
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
581
618
|
* // },
|
|
@@ -654,6 +691,9 @@ declare const GetAgentCommand_base: {
|
|
|
654
691
|
* // kb: {
|
|
655
692
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
656
693
|
* // instructions: "STRING_VALUE",
|
|
694
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
695
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
696
|
+
* // searchLimit: Number("int"),
|
|
657
697
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
658
698
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
659
699
|
* // },
|
|
@@ -691,6 +731,7 @@ declare const GetAgentCommand_base: {
|
|
|
691
731
|
* // transfer: "<AgentTransferCapability>",
|
|
692
732
|
* // suggestions: {
|
|
693
733
|
* // name: "STRING_VALUE",
|
|
734
|
+
* // instructions: "STRING_VALUE",
|
|
694
735
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
695
736
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
696
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
|
|
@@ -191,6 +203,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
191
203
|
* // },
|
|
192
204
|
* // ],
|
|
193
205
|
* // startMessage: "STRING_VALUE",
|
|
206
|
+
* // startMessages: [
|
|
207
|
+
* // {
|
|
208
|
+
* // language: "STRING_VALUE", // required
|
|
209
|
+
* // text: "STRING_VALUE", // required
|
|
210
|
+
* // },
|
|
211
|
+
* // ],
|
|
194
212
|
* // pipeline: { // AgentToolPipeline
|
|
195
213
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
196
214
|
* // instructions: "STRING_VALUE",
|
|
@@ -221,6 +239,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
221
239
|
* // connector: { // AgentConnectorCapability
|
|
222
240
|
* // id: "STRING_VALUE", // required
|
|
223
241
|
* // startMessage: "STRING_VALUE",
|
|
242
|
+
* // startMessages: [
|
|
243
|
+
* // {
|
|
244
|
+
* // language: "STRING_VALUE", // required
|
|
245
|
+
* // text: "STRING_VALUE", // required
|
|
246
|
+
* // },
|
|
247
|
+
* // ],
|
|
224
248
|
* // pipeline: {
|
|
225
249
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
226
250
|
* // instructions: "STRING_VALUE",
|
|
@@ -251,6 +275,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
251
275
|
* // kb: { // AgentKnowledgeBase
|
|
252
276
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
253
277
|
* // instructions: "STRING_VALUE",
|
|
278
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
279
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
280
|
+
* // searchLimit: Number("int"),
|
|
254
281
|
* // channels: [
|
|
255
282
|
* // "voice" || "chat" || "assistant",
|
|
256
283
|
* // ],
|
|
@@ -407,6 +434,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
407
434
|
* // },
|
|
408
435
|
* // suggestions: { // AgentSuggestionsCapability
|
|
409
436
|
* // name: "STRING_VALUE",
|
|
437
|
+
* // instructions: "STRING_VALUE",
|
|
410
438
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
411
439
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
412
440
|
* // },
|
|
@@ -424,6 +452,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
424
452
|
* // name: "STRING_VALUE",
|
|
425
453
|
* // description: "STRING_VALUE",
|
|
426
454
|
* // message: "STRING_VALUE",
|
|
455
|
+
* // messages: [
|
|
456
|
+
* // {
|
|
457
|
+
* // language: "STRING_VALUE", // required
|
|
458
|
+
* // text: "STRING_VALUE", // required
|
|
459
|
+
* // },
|
|
460
|
+
* // ],
|
|
427
461
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
428
462
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
429
463
|
* // },
|
|
@@ -482,6 +516,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
482
516
|
* // },
|
|
483
517
|
* // ],
|
|
484
518
|
* // startMessage: "STRING_VALUE",
|
|
519
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
485
520
|
* // pipeline: {
|
|
486
521
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
487
522
|
* // instructions: "STRING_VALUE",
|
|
@@ -495,6 +530,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
495
530
|
* // connector: {
|
|
496
531
|
* // id: "STRING_VALUE", // required
|
|
497
532
|
* // startMessage: "STRING_VALUE",
|
|
533
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
498
534
|
* // pipeline: {
|
|
499
535
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
500
536
|
* // instructions: "STRING_VALUE",
|
|
@@ -583,6 +619,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
583
619
|
* // name: "STRING_VALUE",
|
|
584
620
|
* // description: "STRING_VALUE",
|
|
585
621
|
* // message: "STRING_VALUE",
|
|
622
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
586
623
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
587
624
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
588
625
|
* // },
|
|
@@ -661,6 +698,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
661
698
|
* // kb: {
|
|
662
699
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
663
700
|
* // instructions: "STRING_VALUE",
|
|
701
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
702
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
703
|
+
* // searchLimit: Number("int"),
|
|
664
704
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
665
705
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
666
706
|
* // },
|
|
@@ -698,6 +738,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
698
738
|
* // transfer: "<AgentTransferCapability>",
|
|
699
739
|
* // suggestions: {
|
|
700
740
|
* // name: "STRING_VALUE",
|
|
741
|
+
* // instructions: "STRING_VALUE",
|
|
701
742
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
702
743
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
703
744
|
* // },
|
|
@@ -91,6 +91,12 @@ declare const ListAgentsCommand_base: {
|
|
|
91
91
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
92
92
|
* // hangup: { // VoiceTerminateHangupAction
|
|
93
93
|
* // message: "STRING_VALUE",
|
|
94
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
95
|
+
* // { // AgentSpokenPhrase
|
|
96
|
+
* // language: "STRING_VALUE", // required
|
|
97
|
+
* // text: "STRING_VALUE", // required
|
|
98
|
+
* // },
|
|
99
|
+
* // ],
|
|
94
100
|
* // },
|
|
95
101
|
* // transfer: { // VoiceTransferTarget
|
|
96
102
|
* // name: "STRING_VALUE", // required
|
|
@@ -105,6 +111,12 @@ declare const ListAgentsCommand_base: {
|
|
|
105
111
|
* // action: {// Union: only one key present
|
|
106
112
|
* // hangup: {
|
|
107
113
|
* // message: "STRING_VALUE",
|
|
114
|
+
* // messages: [
|
|
115
|
+
* // {
|
|
116
|
+
* // language: "STRING_VALUE", // required
|
|
117
|
+
* // text: "STRING_VALUE", // required
|
|
118
|
+
* // },
|
|
119
|
+
* // ],
|
|
108
120
|
* // },
|
|
109
121
|
* // transfer: {
|
|
110
122
|
* // name: "STRING_VALUE", // required
|
|
@@ -189,6 +201,12 @@ declare const ListAgentsCommand_base: {
|
|
|
189
201
|
* // },
|
|
190
202
|
* // ],
|
|
191
203
|
* // startMessage: "STRING_VALUE",
|
|
204
|
+
* // startMessages: [
|
|
205
|
+
* // {
|
|
206
|
+
* // language: "STRING_VALUE", // required
|
|
207
|
+
* // text: "STRING_VALUE", // required
|
|
208
|
+
* // },
|
|
209
|
+
* // ],
|
|
192
210
|
* // pipeline: { // AgentToolPipeline
|
|
193
211
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
194
212
|
* // instructions: "STRING_VALUE",
|
|
@@ -219,6 +237,12 @@ declare const ListAgentsCommand_base: {
|
|
|
219
237
|
* // connector: { // AgentConnectorCapability
|
|
220
238
|
* // id: "STRING_VALUE", // required
|
|
221
239
|
* // startMessage: "STRING_VALUE",
|
|
240
|
+
* // startMessages: [
|
|
241
|
+
* // {
|
|
242
|
+
* // language: "STRING_VALUE", // required
|
|
243
|
+
* // text: "STRING_VALUE", // required
|
|
244
|
+
* // },
|
|
245
|
+
* // ],
|
|
222
246
|
* // pipeline: {
|
|
223
247
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
224
248
|
* // instructions: "STRING_VALUE",
|
|
@@ -249,6 +273,9 @@ declare const ListAgentsCommand_base: {
|
|
|
249
273
|
* // kb: { // AgentKnowledgeBase
|
|
250
274
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
251
275
|
* // instructions: "STRING_VALUE",
|
|
276
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
277
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
278
|
+
* // searchLimit: Number("int"),
|
|
252
279
|
* // channels: [
|
|
253
280
|
* // "voice" || "chat" || "assistant",
|
|
254
281
|
* // ],
|
|
@@ -405,6 +432,7 @@ declare const ListAgentsCommand_base: {
|
|
|
405
432
|
* // },
|
|
406
433
|
* // suggestions: { // AgentSuggestionsCapability
|
|
407
434
|
* // name: "STRING_VALUE",
|
|
435
|
+
* // instructions: "STRING_VALUE",
|
|
408
436
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
409
437
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
410
438
|
* // },
|
|
@@ -422,6 +450,12 @@ declare const ListAgentsCommand_base: {
|
|
|
422
450
|
* // name: "STRING_VALUE",
|
|
423
451
|
* // description: "STRING_VALUE",
|
|
424
452
|
* // message: "STRING_VALUE",
|
|
453
|
+
* // messages: [
|
|
454
|
+
* // {
|
|
455
|
+
* // language: "STRING_VALUE", // required
|
|
456
|
+
* // text: "STRING_VALUE", // required
|
|
457
|
+
* // },
|
|
458
|
+
* // ],
|
|
425
459
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
426
460
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
427
461
|
* // },
|
|
@@ -480,6 +514,7 @@ declare const ListAgentsCommand_base: {
|
|
|
480
514
|
* // },
|
|
481
515
|
* // ],
|
|
482
516
|
* // startMessage: "STRING_VALUE",
|
|
517
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
483
518
|
* // pipeline: {
|
|
484
519
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
485
520
|
* // instructions: "STRING_VALUE",
|
|
@@ -493,6 +528,7 @@ declare const ListAgentsCommand_base: {
|
|
|
493
528
|
* // connector: {
|
|
494
529
|
* // id: "STRING_VALUE", // required
|
|
495
530
|
* // startMessage: "STRING_VALUE",
|
|
531
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
496
532
|
* // pipeline: {
|
|
497
533
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
498
534
|
* // instructions: "STRING_VALUE",
|
|
@@ -581,6 +617,7 @@ declare const ListAgentsCommand_base: {
|
|
|
581
617
|
* // name: "STRING_VALUE",
|
|
582
618
|
* // description: "STRING_VALUE",
|
|
583
619
|
* // message: "STRING_VALUE",
|
|
620
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
584
621
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
585
622
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
586
623
|
* // },
|
|
@@ -659,6 +696,9 @@ declare const ListAgentsCommand_base: {
|
|
|
659
696
|
* // kb: {
|
|
660
697
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
661
698
|
* // instructions: "STRING_VALUE",
|
|
699
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
700
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
701
|
+
* // searchLimit: Number("int"),
|
|
662
702
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
663
703
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
664
704
|
* // },
|
|
@@ -696,6 +736,7 @@ declare const ListAgentsCommand_base: {
|
|
|
696
736
|
* // transfer: "<AgentTransferCapability>",
|
|
697
737
|
* // suggestions: {
|
|
698
738
|
* // name: "STRING_VALUE",
|
|
739
|
+
* // instructions: "STRING_VALUE",
|
|
699
740
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
700
741
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
701
742
|
* // },
|
|
@@ -95,6 +95,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
95
95
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
96
96
|
* // hangup: { // VoiceTerminateHangupAction
|
|
97
97
|
* // message: "STRING_VALUE",
|
|
98
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
99
|
+
* // { // AgentSpokenPhrase
|
|
100
|
+
* // language: "STRING_VALUE", // required
|
|
101
|
+
* // text: "STRING_VALUE", // required
|
|
102
|
+
* // },
|
|
103
|
+
* // ],
|
|
98
104
|
* // },
|
|
99
105
|
* // transfer: { // VoiceTransferTarget
|
|
100
106
|
* // name: "STRING_VALUE", // required
|
|
@@ -109,6 +115,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
109
115
|
* // action: {// Union: only one key present
|
|
110
116
|
* // hangup: {
|
|
111
117
|
* // message: "STRING_VALUE",
|
|
118
|
+
* // messages: [
|
|
119
|
+
* // {
|
|
120
|
+
* // language: "STRING_VALUE", // required
|
|
121
|
+
* // text: "STRING_VALUE", // required
|
|
122
|
+
* // },
|
|
123
|
+
* // ],
|
|
112
124
|
* // },
|
|
113
125
|
* // transfer: {
|
|
114
126
|
* // name: "STRING_VALUE", // required
|
|
@@ -193,6 +205,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
193
205
|
* // },
|
|
194
206
|
* // ],
|
|
195
207
|
* // startMessage: "STRING_VALUE",
|
|
208
|
+
* // startMessages: [
|
|
209
|
+
* // {
|
|
210
|
+
* // language: "STRING_VALUE", // required
|
|
211
|
+
* // text: "STRING_VALUE", // required
|
|
212
|
+
* // },
|
|
213
|
+
* // ],
|
|
196
214
|
* // pipeline: { // AgentToolPipeline
|
|
197
215
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
198
216
|
* // instructions: "STRING_VALUE",
|
|
@@ -223,6 +241,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
223
241
|
* // connector: { // AgentConnectorCapability
|
|
224
242
|
* // id: "STRING_VALUE", // required
|
|
225
243
|
* // startMessage: "STRING_VALUE",
|
|
244
|
+
* // startMessages: [
|
|
245
|
+
* // {
|
|
246
|
+
* // language: "STRING_VALUE", // required
|
|
247
|
+
* // text: "STRING_VALUE", // required
|
|
248
|
+
* // },
|
|
249
|
+
* // ],
|
|
226
250
|
* // pipeline: {
|
|
227
251
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
228
252
|
* // instructions: "STRING_VALUE",
|
|
@@ -253,6 +277,9 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
253
277
|
* // kb: { // AgentKnowledgeBase
|
|
254
278
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
255
279
|
* // instructions: "STRING_VALUE",
|
|
280
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
281
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
282
|
+
* // searchLimit: Number("int"),
|
|
256
283
|
* // channels: [
|
|
257
284
|
* // "voice" || "chat" || "assistant",
|
|
258
285
|
* // ],
|
|
@@ -409,6 +436,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
409
436
|
* // },
|
|
410
437
|
* // suggestions: { // AgentSuggestionsCapability
|
|
411
438
|
* // name: "STRING_VALUE",
|
|
439
|
+
* // instructions: "STRING_VALUE",
|
|
412
440
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
413
441
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
414
442
|
* // },
|
|
@@ -426,6 +454,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
426
454
|
* // name: "STRING_VALUE",
|
|
427
455
|
* // description: "STRING_VALUE",
|
|
428
456
|
* // message: "STRING_VALUE",
|
|
457
|
+
* // messages: [
|
|
458
|
+
* // {
|
|
459
|
+
* // language: "STRING_VALUE", // required
|
|
460
|
+
* // text: "STRING_VALUE", // required
|
|
461
|
+
* // },
|
|
462
|
+
* // ],
|
|
429
463
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
430
464
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
431
465
|
* // },
|
|
@@ -484,6 +518,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
484
518
|
* // },
|
|
485
519
|
* // ],
|
|
486
520
|
* // startMessage: "STRING_VALUE",
|
|
521
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
487
522
|
* // pipeline: {
|
|
488
523
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
489
524
|
* // instructions: "STRING_VALUE",
|
|
@@ -497,6 +532,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
497
532
|
* // connector: {
|
|
498
533
|
* // id: "STRING_VALUE", // required
|
|
499
534
|
* // startMessage: "STRING_VALUE",
|
|
535
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
500
536
|
* // pipeline: {
|
|
501
537
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
502
538
|
* // instructions: "STRING_VALUE",
|
|
@@ -585,6 +621,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
585
621
|
* // name: "STRING_VALUE",
|
|
586
622
|
* // description: "STRING_VALUE",
|
|
587
623
|
* // message: "STRING_VALUE",
|
|
624
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
588
625
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
589
626
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
590
627
|
* // },
|
|
@@ -663,6 +700,9 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
663
700
|
* // kb: {
|
|
664
701
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
665
702
|
* // instructions: "STRING_VALUE",
|
|
703
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
704
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
705
|
+
* // searchLimit: Number("int"),
|
|
666
706
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
667
707
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
668
708
|
* // },
|
|
@@ -700,6 +740,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
700
740
|
* // transfer: "<AgentTransferCapability>",
|
|
701
741
|
* // suggestions: {
|
|
702
742
|
* // name: "STRING_VALUE",
|
|
743
|
+
* // instructions: "STRING_VALUE",
|
|
703
744
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
704
745
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
705
746
|
* // },
|
|
@@ -88,6 +88,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
88
88
|
* // action: { // VoiceTerminateAction Union: only one key present
|
|
89
89
|
* // hangup: { // VoiceTerminateHangupAction
|
|
90
90
|
* // message: "STRING_VALUE",
|
|
91
|
+
* // messages: [ // AgentSpokenPhraseList
|
|
92
|
+
* // { // AgentSpokenPhrase
|
|
93
|
+
* // language: "STRING_VALUE", // required
|
|
94
|
+
* // text: "STRING_VALUE", // required
|
|
95
|
+
* // },
|
|
96
|
+
* // ],
|
|
91
97
|
* // },
|
|
92
98
|
* // transfer: { // VoiceTransferTarget
|
|
93
99
|
* // name: "STRING_VALUE", // required
|
|
@@ -102,6 +108,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
102
108
|
* // action: {// Union: only one key present
|
|
103
109
|
* // hangup: {
|
|
104
110
|
* // message: "STRING_VALUE",
|
|
111
|
+
* // messages: [
|
|
112
|
+
* // {
|
|
113
|
+
* // language: "STRING_VALUE", // required
|
|
114
|
+
* // text: "STRING_VALUE", // required
|
|
115
|
+
* // },
|
|
116
|
+
* // ],
|
|
105
117
|
* // },
|
|
106
118
|
* // transfer: {
|
|
107
119
|
* // name: "STRING_VALUE", // required
|
|
@@ -186,6 +198,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
186
198
|
* // },
|
|
187
199
|
* // ],
|
|
188
200
|
* // startMessage: "STRING_VALUE",
|
|
201
|
+
* // startMessages: [
|
|
202
|
+
* // {
|
|
203
|
+
* // language: "STRING_VALUE", // required
|
|
204
|
+
* // text: "STRING_VALUE", // required
|
|
205
|
+
* // },
|
|
206
|
+
* // ],
|
|
189
207
|
* // pipeline: { // AgentToolPipeline
|
|
190
208
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
191
209
|
* // instructions: "STRING_VALUE",
|
|
@@ -216,6 +234,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
216
234
|
* // connector: { // AgentConnectorCapability
|
|
217
235
|
* // id: "STRING_VALUE", // required
|
|
218
236
|
* // startMessage: "STRING_VALUE",
|
|
237
|
+
* // startMessages: [
|
|
238
|
+
* // {
|
|
239
|
+
* // language: "STRING_VALUE", // required
|
|
240
|
+
* // text: "STRING_VALUE", // required
|
|
241
|
+
* // },
|
|
242
|
+
* // ],
|
|
219
243
|
* // pipeline: {
|
|
220
244
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
221
245
|
* // instructions: "STRING_VALUE",
|
|
@@ -246,6 +270,9 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
246
270
|
* // kb: { // AgentKnowledgeBase
|
|
247
271
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
248
272
|
* // instructions: "STRING_VALUE",
|
|
273
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
274
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
275
|
+
* // searchLimit: Number("int"),
|
|
249
276
|
* // channels: [
|
|
250
277
|
* // "voice" || "chat" || "assistant",
|
|
251
278
|
* // ],
|
|
@@ -402,6 +429,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
402
429
|
* // },
|
|
403
430
|
* // suggestions: { // AgentSuggestionsCapability
|
|
404
431
|
* // name: "STRING_VALUE",
|
|
432
|
+
* // instructions: "STRING_VALUE",
|
|
405
433
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
406
434
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
407
435
|
* // },
|
|
@@ -419,6 +447,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
419
447
|
* // name: "STRING_VALUE",
|
|
420
448
|
* // description: "STRING_VALUE",
|
|
421
449
|
* // message: "STRING_VALUE",
|
|
450
|
+
* // messages: [
|
|
451
|
+
* // {
|
|
452
|
+
* // language: "STRING_VALUE", // required
|
|
453
|
+
* // text: "STRING_VALUE", // required
|
|
454
|
+
* // },
|
|
455
|
+
* // ],
|
|
422
456
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
423
457
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
424
458
|
* // },
|
|
@@ -477,6 +511,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
477
511
|
* // },
|
|
478
512
|
* // ],
|
|
479
513
|
* // startMessage: "STRING_VALUE",
|
|
514
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
480
515
|
* // pipeline: {
|
|
481
516
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
482
517
|
* // instructions: "STRING_VALUE",
|
|
@@ -490,6 +525,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
490
525
|
* // connector: {
|
|
491
526
|
* // id: "STRING_VALUE", // required
|
|
492
527
|
* // startMessage: "STRING_VALUE",
|
|
528
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
493
529
|
* // pipeline: {
|
|
494
530
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
495
531
|
* // instructions: "STRING_VALUE",
|
|
@@ -578,6 +614,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
578
614
|
* // name: "STRING_VALUE",
|
|
579
615
|
* // description: "STRING_VALUE",
|
|
580
616
|
* // message: "STRING_VALUE",
|
|
617
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
581
618
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
582
619
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
583
620
|
* // },
|
|
@@ -656,6 +693,9 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
656
693
|
* // kb: {
|
|
657
694
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
658
695
|
* // instructions: "STRING_VALUE",
|
|
696
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
697
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
698
|
+
* // searchLimit: Number("int"),
|
|
659
699
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
660
700
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
661
701
|
* // },
|
|
@@ -693,6 +733,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
693
733
|
* // transfer: "<AgentTransferCapability>",
|
|
694
734
|
* // suggestions: {
|
|
695
735
|
* // name: "STRING_VALUE",
|
|
736
|
+
* // instructions: "STRING_VALUE",
|
|
696
737
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
697
738
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
698
739
|
* // },
|