@wildix/wilma-agents-client 1.0.43 → 1.0.45
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 +1 -1
|
@@ -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
|
|
@@ -201,6 +213,12 @@ declare const GetAgentCommand_base: {
|
|
|
201
213
|
* // },
|
|
202
214
|
* // ],
|
|
203
215
|
* // startMessage: "STRING_VALUE",
|
|
216
|
+
* // startMessages: [
|
|
217
|
+
* // {
|
|
218
|
+
* // language: "STRING_VALUE", // required
|
|
219
|
+
* // text: "STRING_VALUE", // required
|
|
220
|
+
* // },
|
|
221
|
+
* // ],
|
|
204
222
|
* // pipeline: { // AgentToolPipeline
|
|
205
223
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
206
224
|
* // instructions: "STRING_VALUE",
|
|
@@ -231,6 +249,12 @@ declare const GetAgentCommand_base: {
|
|
|
231
249
|
* // connector: { // AgentConnectorCapability
|
|
232
250
|
* // id: "STRING_VALUE", // required
|
|
233
251
|
* // startMessage: "STRING_VALUE",
|
|
252
|
+
* // startMessages: [
|
|
253
|
+
* // {
|
|
254
|
+
* // language: "STRING_VALUE", // required
|
|
255
|
+
* // text: "STRING_VALUE", // required
|
|
256
|
+
* // },
|
|
257
|
+
* // ],
|
|
234
258
|
* // pipeline: {
|
|
235
259
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
236
260
|
* // instructions: "STRING_VALUE",
|
|
@@ -261,6 +285,9 @@ declare const GetAgentCommand_base: {
|
|
|
261
285
|
* // kb: { // AgentKnowledgeBase
|
|
262
286
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
263
287
|
* // instructions: "STRING_VALUE",
|
|
288
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
289
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
290
|
+
* // searchLimit: Number("int"),
|
|
264
291
|
* // channels: [
|
|
265
292
|
* // "voice" || "chat" || "assistant",
|
|
266
293
|
* // ],
|
|
@@ -417,6 +444,7 @@ declare const GetAgentCommand_base: {
|
|
|
417
444
|
* // },
|
|
418
445
|
* // suggestions: { // AgentSuggestionsCapability
|
|
419
446
|
* // name: "STRING_VALUE",
|
|
447
|
+
* // instructions: "STRING_VALUE",
|
|
420
448
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
421
449
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
422
450
|
* // },
|
|
@@ -434,6 +462,12 @@ declare const GetAgentCommand_base: {
|
|
|
434
462
|
* // name: "STRING_VALUE",
|
|
435
463
|
* // description: "STRING_VALUE",
|
|
436
464
|
* // message: "STRING_VALUE",
|
|
465
|
+
* // messages: [
|
|
466
|
+
* // {
|
|
467
|
+
* // language: "STRING_VALUE", // required
|
|
468
|
+
* // text: "STRING_VALUE", // required
|
|
469
|
+
* // },
|
|
470
|
+
* // ],
|
|
437
471
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
438
472
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
439
473
|
* // },
|
|
@@ -492,6 +526,7 @@ declare const GetAgentCommand_base: {
|
|
|
492
526
|
* // },
|
|
493
527
|
* // ],
|
|
494
528
|
* // startMessage: "STRING_VALUE",
|
|
529
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
495
530
|
* // pipeline: {
|
|
496
531
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
497
532
|
* // instructions: "STRING_VALUE",
|
|
@@ -505,6 +540,7 @@ declare const GetAgentCommand_base: {
|
|
|
505
540
|
* // connector: {
|
|
506
541
|
* // id: "STRING_VALUE", // required
|
|
507
542
|
* // startMessage: "STRING_VALUE",
|
|
543
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
508
544
|
* // pipeline: {
|
|
509
545
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
510
546
|
* // instructions: "STRING_VALUE",
|
|
@@ -593,6 +629,7 @@ declare const GetAgentCommand_base: {
|
|
|
593
629
|
* // name: "STRING_VALUE",
|
|
594
630
|
* // description: "STRING_VALUE",
|
|
595
631
|
* // message: "STRING_VALUE",
|
|
632
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
596
633
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
597
634
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
598
635
|
* // },
|
|
@@ -671,6 +708,9 @@ declare const GetAgentCommand_base: {
|
|
|
671
708
|
* // kb: {
|
|
672
709
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
673
710
|
* // instructions: "STRING_VALUE",
|
|
711
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
712
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
713
|
+
* // searchLimit: Number("int"),
|
|
674
714
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
675
715
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
676
716
|
* // },
|
|
@@ -708,6 +748,7 @@ declare const GetAgentCommand_base: {
|
|
|
708
748
|
* // transfer: "<AgentTransferCapability>",
|
|
709
749
|
* // suggestions: {
|
|
710
750
|
* // name: "STRING_VALUE",
|
|
751
|
+
* // instructions: "STRING_VALUE",
|
|
711
752
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
712
753
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
713
754
|
* // },
|
|
@@ -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
|
|
@@ -208,6 +220,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
208
220
|
* // },
|
|
209
221
|
* // ],
|
|
210
222
|
* // startMessage: "STRING_VALUE",
|
|
223
|
+
* // startMessages: [
|
|
224
|
+
* // {
|
|
225
|
+
* // language: "STRING_VALUE", // required
|
|
226
|
+
* // text: "STRING_VALUE", // required
|
|
227
|
+
* // },
|
|
228
|
+
* // ],
|
|
211
229
|
* // pipeline: { // AgentToolPipeline
|
|
212
230
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
213
231
|
* // instructions: "STRING_VALUE",
|
|
@@ -238,6 +256,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
238
256
|
* // connector: { // AgentConnectorCapability
|
|
239
257
|
* // id: "STRING_VALUE", // required
|
|
240
258
|
* // startMessage: "STRING_VALUE",
|
|
259
|
+
* // startMessages: [
|
|
260
|
+
* // {
|
|
261
|
+
* // language: "STRING_VALUE", // required
|
|
262
|
+
* // text: "STRING_VALUE", // required
|
|
263
|
+
* // },
|
|
264
|
+
* // ],
|
|
241
265
|
* // pipeline: {
|
|
242
266
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
243
267
|
* // instructions: "STRING_VALUE",
|
|
@@ -268,6 +292,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
268
292
|
* // kb: { // AgentKnowledgeBase
|
|
269
293
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
270
294
|
* // instructions: "STRING_VALUE",
|
|
295
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
296
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
297
|
+
* // searchLimit: Number("int"),
|
|
271
298
|
* // channels: [
|
|
272
299
|
* // "voice" || "chat" || "assistant",
|
|
273
300
|
* // ],
|
|
@@ -424,6 +451,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
424
451
|
* // },
|
|
425
452
|
* // suggestions: { // AgentSuggestionsCapability
|
|
426
453
|
* // name: "STRING_VALUE",
|
|
454
|
+
* // instructions: "STRING_VALUE",
|
|
427
455
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
428
456
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
429
457
|
* // },
|
|
@@ -441,6 +469,12 @@ declare const GetAgentVersionCommand_base: {
|
|
|
441
469
|
* // name: "STRING_VALUE",
|
|
442
470
|
* // description: "STRING_VALUE",
|
|
443
471
|
* // message: "STRING_VALUE",
|
|
472
|
+
* // messages: [
|
|
473
|
+
* // {
|
|
474
|
+
* // language: "STRING_VALUE", // required
|
|
475
|
+
* // text: "STRING_VALUE", // required
|
|
476
|
+
* // },
|
|
477
|
+
* // ],
|
|
444
478
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
445
479
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
446
480
|
* // },
|
|
@@ -499,6 +533,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
499
533
|
* // },
|
|
500
534
|
* // ],
|
|
501
535
|
* // startMessage: "STRING_VALUE",
|
|
536
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
502
537
|
* // pipeline: {
|
|
503
538
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
504
539
|
* // instructions: "STRING_VALUE",
|
|
@@ -512,6 +547,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
512
547
|
* // connector: {
|
|
513
548
|
* // id: "STRING_VALUE", // required
|
|
514
549
|
* // startMessage: "STRING_VALUE",
|
|
550
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
515
551
|
* // pipeline: {
|
|
516
552
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
517
553
|
* // instructions: "STRING_VALUE",
|
|
@@ -600,6 +636,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
600
636
|
* // name: "STRING_VALUE",
|
|
601
637
|
* // description: "STRING_VALUE",
|
|
602
638
|
* // message: "STRING_VALUE",
|
|
639
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
603
640
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
604
641
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
605
642
|
* // },
|
|
@@ -678,6 +715,9 @@ declare const GetAgentVersionCommand_base: {
|
|
|
678
715
|
* // kb: {
|
|
679
716
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
680
717
|
* // instructions: "STRING_VALUE",
|
|
718
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
719
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
720
|
+
* // searchLimit: Number("int"),
|
|
681
721
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
682
722
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
683
723
|
* // },
|
|
@@ -715,6 +755,7 @@ declare const GetAgentVersionCommand_base: {
|
|
|
715
755
|
* // transfer: "<AgentTransferCapability>",
|
|
716
756
|
* // suggestions: {
|
|
717
757
|
* // name: "STRING_VALUE",
|
|
758
|
+
* // instructions: "STRING_VALUE",
|
|
718
759
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
719
760
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
720
761
|
* // },
|
|
@@ -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
|
|
@@ -206,6 +218,12 @@ declare const ListAgentsCommand_base: {
|
|
|
206
218
|
* // },
|
|
207
219
|
* // ],
|
|
208
220
|
* // startMessage: "STRING_VALUE",
|
|
221
|
+
* // startMessages: [
|
|
222
|
+
* // {
|
|
223
|
+
* // language: "STRING_VALUE", // required
|
|
224
|
+
* // text: "STRING_VALUE", // required
|
|
225
|
+
* // },
|
|
226
|
+
* // ],
|
|
209
227
|
* // pipeline: { // AgentToolPipeline
|
|
210
228
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
211
229
|
* // instructions: "STRING_VALUE",
|
|
@@ -236,6 +254,12 @@ declare const ListAgentsCommand_base: {
|
|
|
236
254
|
* // connector: { // AgentConnectorCapability
|
|
237
255
|
* // id: "STRING_VALUE", // required
|
|
238
256
|
* // startMessage: "STRING_VALUE",
|
|
257
|
+
* // startMessages: [
|
|
258
|
+
* // {
|
|
259
|
+
* // language: "STRING_VALUE", // required
|
|
260
|
+
* // text: "STRING_VALUE", // required
|
|
261
|
+
* // },
|
|
262
|
+
* // ],
|
|
239
263
|
* // pipeline: {
|
|
240
264
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
241
265
|
* // instructions: "STRING_VALUE",
|
|
@@ -266,6 +290,9 @@ declare const ListAgentsCommand_base: {
|
|
|
266
290
|
* // kb: { // AgentKnowledgeBase
|
|
267
291
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
268
292
|
* // instructions: "STRING_VALUE",
|
|
293
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
294
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
295
|
+
* // searchLimit: Number("int"),
|
|
269
296
|
* // channels: [
|
|
270
297
|
* // "voice" || "chat" || "assistant",
|
|
271
298
|
* // ],
|
|
@@ -422,6 +449,7 @@ declare const ListAgentsCommand_base: {
|
|
|
422
449
|
* // },
|
|
423
450
|
* // suggestions: { // AgentSuggestionsCapability
|
|
424
451
|
* // name: "STRING_VALUE",
|
|
452
|
+
* // instructions: "STRING_VALUE",
|
|
425
453
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
426
454
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
427
455
|
* // },
|
|
@@ -439,6 +467,12 @@ declare const ListAgentsCommand_base: {
|
|
|
439
467
|
* // name: "STRING_VALUE",
|
|
440
468
|
* // description: "STRING_VALUE",
|
|
441
469
|
* // message: "STRING_VALUE",
|
|
470
|
+
* // messages: [
|
|
471
|
+
* // {
|
|
472
|
+
* // language: "STRING_VALUE", // required
|
|
473
|
+
* // text: "STRING_VALUE", // required
|
|
474
|
+
* // },
|
|
475
|
+
* // ],
|
|
442
476
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
443
477
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
444
478
|
* // },
|
|
@@ -497,6 +531,7 @@ declare const ListAgentsCommand_base: {
|
|
|
497
531
|
* // },
|
|
498
532
|
* // ],
|
|
499
533
|
* // startMessage: "STRING_VALUE",
|
|
534
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
500
535
|
* // pipeline: {
|
|
501
536
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
502
537
|
* // instructions: "STRING_VALUE",
|
|
@@ -510,6 +545,7 @@ declare const ListAgentsCommand_base: {
|
|
|
510
545
|
* // connector: {
|
|
511
546
|
* // id: "STRING_VALUE", // required
|
|
512
547
|
* // startMessage: "STRING_VALUE",
|
|
548
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
513
549
|
* // pipeline: {
|
|
514
550
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
515
551
|
* // instructions: "STRING_VALUE",
|
|
@@ -598,6 +634,7 @@ declare const ListAgentsCommand_base: {
|
|
|
598
634
|
* // name: "STRING_VALUE",
|
|
599
635
|
* // description: "STRING_VALUE",
|
|
600
636
|
* // message: "STRING_VALUE",
|
|
637
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
601
638
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
602
639
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
603
640
|
* // },
|
|
@@ -676,6 +713,9 @@ declare const ListAgentsCommand_base: {
|
|
|
676
713
|
* // kb: {
|
|
677
714
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
678
715
|
* // instructions: "STRING_VALUE",
|
|
716
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
717
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
718
|
+
* // searchLimit: Number("int"),
|
|
679
719
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
680
720
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
681
721
|
* // },
|
|
@@ -713,6 +753,7 @@ declare const ListAgentsCommand_base: {
|
|
|
713
753
|
* // transfer: "<AgentTransferCapability>",
|
|
714
754
|
* // suggestions: {
|
|
715
755
|
* // name: "STRING_VALUE",
|
|
756
|
+
* // instructions: "STRING_VALUE",
|
|
716
757
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
717
758
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
718
759
|
* // },
|
|
@@ -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
|
|
@@ -210,6 +222,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
210
222
|
* // },
|
|
211
223
|
* // ],
|
|
212
224
|
* // startMessage: "STRING_VALUE",
|
|
225
|
+
* // startMessages: [
|
|
226
|
+
* // {
|
|
227
|
+
* // language: "STRING_VALUE", // required
|
|
228
|
+
* // text: "STRING_VALUE", // required
|
|
229
|
+
* // },
|
|
230
|
+
* // ],
|
|
213
231
|
* // pipeline: { // AgentToolPipeline
|
|
214
232
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
215
233
|
* // instructions: "STRING_VALUE",
|
|
@@ -240,6 +258,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
240
258
|
* // connector: { // AgentConnectorCapability
|
|
241
259
|
* // id: "STRING_VALUE", // required
|
|
242
260
|
* // startMessage: "STRING_VALUE",
|
|
261
|
+
* // startMessages: [
|
|
262
|
+
* // {
|
|
263
|
+
* // language: "STRING_VALUE", // required
|
|
264
|
+
* // text: "STRING_VALUE", // required
|
|
265
|
+
* // },
|
|
266
|
+
* // ],
|
|
243
267
|
* // pipeline: {
|
|
244
268
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
245
269
|
* // instructions: "STRING_VALUE",
|
|
@@ -270,6 +294,9 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
270
294
|
* // kb: { // AgentKnowledgeBase
|
|
271
295
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
272
296
|
* // instructions: "STRING_VALUE",
|
|
297
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
298
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
299
|
+
* // searchLimit: Number("int"),
|
|
273
300
|
* // channels: [
|
|
274
301
|
* // "voice" || "chat" || "assistant",
|
|
275
302
|
* // ],
|
|
@@ -426,6 +453,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
426
453
|
* // },
|
|
427
454
|
* // suggestions: { // AgentSuggestionsCapability
|
|
428
455
|
* // name: "STRING_VALUE",
|
|
456
|
+
* // instructions: "STRING_VALUE",
|
|
429
457
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
430
458
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
431
459
|
* // },
|
|
@@ -443,6 +471,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
443
471
|
* // name: "STRING_VALUE",
|
|
444
472
|
* // description: "STRING_VALUE",
|
|
445
473
|
* // message: "STRING_VALUE",
|
|
474
|
+
* // messages: [
|
|
475
|
+
* // {
|
|
476
|
+
* // language: "STRING_VALUE", // required
|
|
477
|
+
* // text: "STRING_VALUE", // required
|
|
478
|
+
* // },
|
|
479
|
+
* // ],
|
|
446
480
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
447
481
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
448
482
|
* // },
|
|
@@ -501,6 +535,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
501
535
|
* // },
|
|
502
536
|
* // ],
|
|
503
537
|
* // startMessage: "STRING_VALUE",
|
|
538
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
504
539
|
* // pipeline: {
|
|
505
540
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
506
541
|
* // instructions: "STRING_VALUE",
|
|
@@ -514,6 +549,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
514
549
|
* // connector: {
|
|
515
550
|
* // id: "STRING_VALUE", // required
|
|
516
551
|
* // startMessage: "STRING_VALUE",
|
|
552
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
517
553
|
* // pipeline: {
|
|
518
554
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
519
555
|
* // instructions: "STRING_VALUE",
|
|
@@ -602,6 +638,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
602
638
|
* // name: "STRING_VALUE",
|
|
603
639
|
* // description: "STRING_VALUE",
|
|
604
640
|
* // message: "STRING_VALUE",
|
|
641
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
605
642
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
606
643
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
607
644
|
* // },
|
|
@@ -680,6 +717,9 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
680
717
|
* // kb: {
|
|
681
718
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
682
719
|
* // instructions: "STRING_VALUE",
|
|
720
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
721
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
722
|
+
* // searchLimit: Number("int"),
|
|
683
723
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
684
724
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
685
725
|
* // },
|
|
@@ -717,6 +757,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
717
757
|
* // transfer: "<AgentTransferCapability>",
|
|
718
758
|
* // suggestions: {
|
|
719
759
|
* // name: "STRING_VALUE",
|
|
760
|
+
* // instructions: "STRING_VALUE",
|
|
720
761
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
721
762
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
722
763
|
* // },
|
|
@@ -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
|
|
@@ -203,6 +215,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
203
215
|
* // },
|
|
204
216
|
* // ],
|
|
205
217
|
* // startMessage: "STRING_VALUE",
|
|
218
|
+
* // startMessages: [
|
|
219
|
+
* // {
|
|
220
|
+
* // language: "STRING_VALUE", // required
|
|
221
|
+
* // text: "STRING_VALUE", // required
|
|
222
|
+
* // },
|
|
223
|
+
* // ],
|
|
206
224
|
* // pipeline: { // AgentToolPipeline
|
|
207
225
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
208
226
|
* // instructions: "STRING_VALUE",
|
|
@@ -233,6 +251,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
233
251
|
* // connector: { // AgentConnectorCapability
|
|
234
252
|
* // id: "STRING_VALUE", // required
|
|
235
253
|
* // startMessage: "STRING_VALUE",
|
|
254
|
+
* // startMessages: [
|
|
255
|
+
* // {
|
|
256
|
+
* // language: "STRING_VALUE", // required
|
|
257
|
+
* // text: "STRING_VALUE", // required
|
|
258
|
+
* // },
|
|
259
|
+
* // ],
|
|
236
260
|
* // pipeline: {
|
|
237
261
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
238
262
|
* // instructions: "STRING_VALUE",
|
|
@@ -263,6 +287,9 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
263
287
|
* // kb: { // AgentKnowledgeBase
|
|
264
288
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
265
289
|
* // instructions: "STRING_VALUE",
|
|
290
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
291
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
292
|
+
* // searchLimit: Number("int"),
|
|
266
293
|
* // channels: [
|
|
267
294
|
* // "voice" || "chat" || "assistant",
|
|
268
295
|
* // ],
|
|
@@ -419,6 +446,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
419
446
|
* // },
|
|
420
447
|
* // suggestions: { // AgentSuggestionsCapability
|
|
421
448
|
* // name: "STRING_VALUE",
|
|
449
|
+
* // instructions: "STRING_VALUE",
|
|
422
450
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
423
451
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
424
452
|
* // },
|
|
@@ -436,6 +464,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
436
464
|
* // name: "STRING_VALUE",
|
|
437
465
|
* // description: "STRING_VALUE",
|
|
438
466
|
* // message: "STRING_VALUE",
|
|
467
|
+
* // messages: [
|
|
468
|
+
* // {
|
|
469
|
+
* // language: "STRING_VALUE", // required
|
|
470
|
+
* // text: "STRING_VALUE", // required
|
|
471
|
+
* // },
|
|
472
|
+
* // ],
|
|
439
473
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
440
474
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
441
475
|
* // },
|
|
@@ -494,6 +528,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
494
528
|
* // },
|
|
495
529
|
* // ],
|
|
496
530
|
* // startMessage: "STRING_VALUE",
|
|
531
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
497
532
|
* // pipeline: {
|
|
498
533
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
499
534
|
* // instructions: "STRING_VALUE",
|
|
@@ -507,6 +542,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
507
542
|
* // connector: {
|
|
508
543
|
* // id: "STRING_VALUE", // required
|
|
509
544
|
* // startMessage: "STRING_VALUE",
|
|
545
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
510
546
|
* // pipeline: {
|
|
511
547
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
512
548
|
* // instructions: "STRING_VALUE",
|
|
@@ -595,6 +631,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
595
631
|
* // name: "STRING_VALUE",
|
|
596
632
|
* // description: "STRING_VALUE",
|
|
597
633
|
* // message: "STRING_VALUE",
|
|
634
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
598
635
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
599
636
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
600
637
|
* // },
|
|
@@ -673,6 +710,9 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
673
710
|
* // kb: {
|
|
674
711
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
675
712
|
* // instructions: "STRING_VALUE",
|
|
713
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
714
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
715
|
+
* // searchLimit: Number("int"),
|
|
676
716
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
677
717
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
678
718
|
* // },
|
|
@@ -710,6 +750,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
710
750
|
* // transfer: "<AgentTransferCapability>",
|
|
711
751
|
* // suggestions: {
|
|
712
752
|
* // name: "STRING_VALUE",
|
|
753
|
+
* // instructions: "STRING_VALUE",
|
|
713
754
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
714
755
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
715
756
|
* // },
|