@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
|
@@ -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
|
|
@@ -145,23 +157,6 @@ declare const ListAgentsCommand_base: {
|
|
|
145
157
|
* // ],
|
|
146
158
|
* // placeholder: "STRING_VALUE",
|
|
147
159
|
* // },
|
|
148
|
-
* // audio: { // AssistantAudioSettings
|
|
149
|
-
* // enabled: true || false, // required
|
|
150
|
-
* // engine: "STRING_VALUE",
|
|
151
|
-
* // speech: { // AssistantSpeechSettings
|
|
152
|
-
* // languages: [ // AssistantLanguageList // required
|
|
153
|
-
* // { // AssistantLanguage
|
|
154
|
-
* // code: "STRING_VALUE", // required
|
|
155
|
-
* // voice: "STRING_VALUE", // required
|
|
156
|
-
* // isDefault: true || false,
|
|
157
|
-
* // },
|
|
158
|
-
* // ],
|
|
159
|
-
* // transcription: { // AssistantTranscriptionSettings
|
|
160
|
-
* // engine: "STRING_VALUE",
|
|
161
|
-
* // autoDetect: true || false,
|
|
162
|
-
* // },
|
|
163
|
-
* // },
|
|
164
|
-
* // },
|
|
165
160
|
* // },
|
|
166
161
|
* // },
|
|
167
162
|
* // engine: { // AgentEngine Union: only one key present
|
|
@@ -206,6 +201,12 @@ declare const ListAgentsCommand_base: {
|
|
|
206
201
|
* // },
|
|
207
202
|
* // ],
|
|
208
203
|
* // startMessage: "STRING_VALUE",
|
|
204
|
+
* // startMessages: [
|
|
205
|
+
* // {
|
|
206
|
+
* // language: "STRING_VALUE", // required
|
|
207
|
+
* // text: "STRING_VALUE", // required
|
|
208
|
+
* // },
|
|
209
|
+
* // ],
|
|
209
210
|
* // pipeline: { // AgentToolPipeline
|
|
210
211
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
211
212
|
* // instructions: "STRING_VALUE",
|
|
@@ -236,6 +237,12 @@ declare const ListAgentsCommand_base: {
|
|
|
236
237
|
* // connector: { // AgentConnectorCapability
|
|
237
238
|
* // id: "STRING_VALUE", // required
|
|
238
239
|
* // startMessage: "STRING_VALUE",
|
|
240
|
+
* // startMessages: [
|
|
241
|
+
* // {
|
|
242
|
+
* // language: "STRING_VALUE", // required
|
|
243
|
+
* // text: "STRING_VALUE", // required
|
|
244
|
+
* // },
|
|
245
|
+
* // ],
|
|
239
246
|
* // pipeline: {
|
|
240
247
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
241
248
|
* // instructions: "STRING_VALUE",
|
|
@@ -266,6 +273,9 @@ declare const ListAgentsCommand_base: {
|
|
|
266
273
|
* // kb: { // AgentKnowledgeBase
|
|
267
274
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
268
275
|
* // instructions: "STRING_VALUE",
|
|
276
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
277
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
278
|
+
* // searchLimit: Number("int"),
|
|
269
279
|
* // channels: [
|
|
270
280
|
* // "voice" || "chat" || "assistant",
|
|
271
281
|
* // ],
|
|
@@ -422,6 +432,7 @@ declare const ListAgentsCommand_base: {
|
|
|
422
432
|
* // },
|
|
423
433
|
* // suggestions: { // AgentSuggestionsCapability
|
|
424
434
|
* // name: "STRING_VALUE",
|
|
435
|
+
* // instructions: "STRING_VALUE",
|
|
425
436
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
426
437
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
427
438
|
* // },
|
|
@@ -439,6 +450,12 @@ declare const ListAgentsCommand_base: {
|
|
|
439
450
|
* // name: "STRING_VALUE",
|
|
440
451
|
* // description: "STRING_VALUE",
|
|
441
452
|
* // message: "STRING_VALUE",
|
|
453
|
+
* // messages: [
|
|
454
|
+
* // {
|
|
455
|
+
* // language: "STRING_VALUE", // required
|
|
456
|
+
* // text: "STRING_VALUE", // required
|
|
457
|
+
* // },
|
|
458
|
+
* // ],
|
|
442
459
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
443
460
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
444
461
|
* // },
|
|
@@ -497,6 +514,7 @@ declare const ListAgentsCommand_base: {
|
|
|
497
514
|
* // },
|
|
498
515
|
* // ],
|
|
499
516
|
* // startMessage: "STRING_VALUE",
|
|
517
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
500
518
|
* // pipeline: {
|
|
501
519
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
502
520
|
* // instructions: "STRING_VALUE",
|
|
@@ -510,6 +528,7 @@ declare const ListAgentsCommand_base: {
|
|
|
510
528
|
* // connector: {
|
|
511
529
|
* // id: "STRING_VALUE", // required
|
|
512
530
|
* // startMessage: "STRING_VALUE",
|
|
531
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
513
532
|
* // pipeline: {
|
|
514
533
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
515
534
|
* // instructions: "STRING_VALUE",
|
|
@@ -598,6 +617,7 @@ declare const ListAgentsCommand_base: {
|
|
|
598
617
|
* // name: "STRING_VALUE",
|
|
599
618
|
* // description: "STRING_VALUE",
|
|
600
619
|
* // message: "STRING_VALUE",
|
|
620
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
601
621
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
602
622
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
603
623
|
* // },
|
|
@@ -676,6 +696,9 @@ declare const ListAgentsCommand_base: {
|
|
|
676
696
|
* // kb: {
|
|
677
697
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
678
698
|
* // instructions: "STRING_VALUE",
|
|
699
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
700
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
701
|
+
* // searchLimit: Number("int"),
|
|
679
702
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
680
703
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
681
704
|
* // },
|
|
@@ -713,6 +736,7 @@ declare const ListAgentsCommand_base: {
|
|
|
713
736
|
* // transfer: "<AgentTransferCapability>",
|
|
714
737
|
* // suggestions: {
|
|
715
738
|
* // name: "STRING_VALUE",
|
|
739
|
+
* // instructions: "STRING_VALUE",
|
|
716
740
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
717
741
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
718
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
|
|
@@ -149,23 +161,6 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
149
161
|
* // ],
|
|
150
162
|
* // placeholder: "STRING_VALUE",
|
|
151
163
|
* // },
|
|
152
|
-
* // audio: { // AssistantAudioSettings
|
|
153
|
-
* // enabled: true || false, // required
|
|
154
|
-
* // engine: "STRING_VALUE",
|
|
155
|
-
* // speech: { // AssistantSpeechSettings
|
|
156
|
-
* // languages: [ // AssistantLanguageList // required
|
|
157
|
-
* // { // AssistantLanguage
|
|
158
|
-
* // code: "STRING_VALUE", // required
|
|
159
|
-
* // voice: "STRING_VALUE", // required
|
|
160
|
-
* // isDefault: true || false,
|
|
161
|
-
* // },
|
|
162
|
-
* // ],
|
|
163
|
-
* // transcription: { // AssistantTranscriptionSettings
|
|
164
|
-
* // engine: "STRING_VALUE",
|
|
165
|
-
* // autoDetect: true || false,
|
|
166
|
-
* // },
|
|
167
|
-
* // },
|
|
168
|
-
* // },
|
|
169
164
|
* // },
|
|
170
165
|
* // },
|
|
171
166
|
* // engine: { // AgentEngine Union: only one key present
|
|
@@ -210,6 +205,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
210
205
|
* // },
|
|
211
206
|
* // ],
|
|
212
207
|
* // startMessage: "STRING_VALUE",
|
|
208
|
+
* // startMessages: [
|
|
209
|
+
* // {
|
|
210
|
+
* // language: "STRING_VALUE", // required
|
|
211
|
+
* // text: "STRING_VALUE", // required
|
|
212
|
+
* // },
|
|
213
|
+
* // ],
|
|
213
214
|
* // pipeline: { // AgentToolPipeline
|
|
214
215
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
215
216
|
* // instructions: "STRING_VALUE",
|
|
@@ -240,6 +241,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
240
241
|
* // connector: { // AgentConnectorCapability
|
|
241
242
|
* // id: "STRING_VALUE", // required
|
|
242
243
|
* // startMessage: "STRING_VALUE",
|
|
244
|
+
* // startMessages: [
|
|
245
|
+
* // {
|
|
246
|
+
* // language: "STRING_VALUE", // required
|
|
247
|
+
* // text: "STRING_VALUE", // required
|
|
248
|
+
* // },
|
|
249
|
+
* // ],
|
|
243
250
|
* // pipeline: {
|
|
244
251
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
245
252
|
* // instructions: "STRING_VALUE",
|
|
@@ -270,6 +277,9 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
270
277
|
* // kb: { // AgentKnowledgeBase
|
|
271
278
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
272
279
|
* // instructions: "STRING_VALUE",
|
|
280
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
281
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
282
|
+
* // searchLimit: Number("int"),
|
|
273
283
|
* // channels: [
|
|
274
284
|
* // "voice" || "chat" || "assistant",
|
|
275
285
|
* // ],
|
|
@@ -426,6 +436,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
426
436
|
* // },
|
|
427
437
|
* // suggestions: { // AgentSuggestionsCapability
|
|
428
438
|
* // name: "STRING_VALUE",
|
|
439
|
+
* // instructions: "STRING_VALUE",
|
|
429
440
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
430
441
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
431
442
|
* // },
|
|
@@ -443,6 +454,12 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
443
454
|
* // name: "STRING_VALUE",
|
|
444
455
|
* // description: "STRING_VALUE",
|
|
445
456
|
* // message: "STRING_VALUE",
|
|
457
|
+
* // messages: [
|
|
458
|
+
* // {
|
|
459
|
+
* // language: "STRING_VALUE", // required
|
|
460
|
+
* // text: "STRING_VALUE", // required
|
|
461
|
+
* // },
|
|
462
|
+
* // ],
|
|
446
463
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
447
464
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
448
465
|
* // },
|
|
@@ -501,6 +518,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
501
518
|
* // },
|
|
502
519
|
* // ],
|
|
503
520
|
* // startMessage: "STRING_VALUE",
|
|
521
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
504
522
|
* // pipeline: {
|
|
505
523
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
506
524
|
* // instructions: "STRING_VALUE",
|
|
@@ -514,6 +532,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
514
532
|
* // connector: {
|
|
515
533
|
* // id: "STRING_VALUE", // required
|
|
516
534
|
* // startMessage: "STRING_VALUE",
|
|
535
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
517
536
|
* // pipeline: {
|
|
518
537
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
519
538
|
* // instructions: "STRING_VALUE",
|
|
@@ -602,6 +621,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
602
621
|
* // name: "STRING_VALUE",
|
|
603
622
|
* // description: "STRING_VALUE",
|
|
604
623
|
* // message: "STRING_VALUE",
|
|
624
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
605
625
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
606
626
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
607
627
|
* // },
|
|
@@ -680,6 +700,9 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
680
700
|
* // kb: {
|
|
681
701
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
682
702
|
* // instructions: "STRING_VALUE",
|
|
703
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
704
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
705
|
+
* // searchLimit: Number("int"),
|
|
683
706
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
684
707
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
685
708
|
* // },
|
|
@@ -717,6 +740,7 @@ declare const PublishAgentVersionCommand_base: {
|
|
|
717
740
|
* // transfer: "<AgentTransferCapability>",
|
|
718
741
|
* // suggestions: {
|
|
719
742
|
* // name: "STRING_VALUE",
|
|
743
|
+
* // instructions: "STRING_VALUE",
|
|
720
744
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
721
745
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
722
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
|
|
@@ -142,23 +154,6 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
142
154
|
* // ],
|
|
143
155
|
* // placeholder: "STRING_VALUE",
|
|
144
156
|
* // },
|
|
145
|
-
* // audio: { // AssistantAudioSettings
|
|
146
|
-
* // enabled: true || false, // required
|
|
147
|
-
* // engine: "STRING_VALUE",
|
|
148
|
-
* // speech: { // AssistantSpeechSettings
|
|
149
|
-
* // languages: [ // AssistantLanguageList // required
|
|
150
|
-
* // { // AssistantLanguage
|
|
151
|
-
* // code: "STRING_VALUE", // required
|
|
152
|
-
* // voice: "STRING_VALUE", // required
|
|
153
|
-
* // isDefault: true || false,
|
|
154
|
-
* // },
|
|
155
|
-
* // ],
|
|
156
|
-
* // transcription: { // AssistantTranscriptionSettings
|
|
157
|
-
* // engine: "STRING_VALUE",
|
|
158
|
-
* // autoDetect: true || false,
|
|
159
|
-
* // },
|
|
160
|
-
* // },
|
|
161
|
-
* // },
|
|
162
157
|
* // },
|
|
163
158
|
* // },
|
|
164
159
|
* // engine: { // AgentEngine Union: only one key present
|
|
@@ -203,6 +198,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
203
198
|
* // },
|
|
204
199
|
* // ],
|
|
205
200
|
* // startMessage: "STRING_VALUE",
|
|
201
|
+
* // startMessages: [
|
|
202
|
+
* // {
|
|
203
|
+
* // language: "STRING_VALUE", // required
|
|
204
|
+
* // text: "STRING_VALUE", // required
|
|
205
|
+
* // },
|
|
206
|
+
* // ],
|
|
206
207
|
* // pipeline: { // AgentToolPipeline
|
|
207
208
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
208
209
|
* // instructions: "STRING_VALUE",
|
|
@@ -233,6 +234,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
233
234
|
* // connector: { // AgentConnectorCapability
|
|
234
235
|
* // id: "STRING_VALUE", // required
|
|
235
236
|
* // startMessage: "STRING_VALUE",
|
|
237
|
+
* // startMessages: [
|
|
238
|
+
* // {
|
|
239
|
+
* // language: "STRING_VALUE", // required
|
|
240
|
+
* // text: "STRING_VALUE", // required
|
|
241
|
+
* // },
|
|
242
|
+
* // ],
|
|
236
243
|
* // pipeline: {
|
|
237
244
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
238
245
|
* // instructions: "STRING_VALUE",
|
|
@@ -263,6 +270,9 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
263
270
|
* // kb: { // AgentKnowledgeBase
|
|
264
271
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
265
272
|
* // instructions: "STRING_VALUE",
|
|
273
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
274
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
275
|
+
* // searchLimit: Number("int"),
|
|
266
276
|
* // channels: [
|
|
267
277
|
* // "voice" || "chat" || "assistant",
|
|
268
278
|
* // ],
|
|
@@ -419,6 +429,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
419
429
|
* // },
|
|
420
430
|
* // suggestions: { // AgentSuggestionsCapability
|
|
421
431
|
* // name: "STRING_VALUE",
|
|
432
|
+
* // instructions: "STRING_VALUE",
|
|
422
433
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
423
434
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
424
435
|
* // },
|
|
@@ -436,6 +447,12 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
436
447
|
* // name: "STRING_VALUE",
|
|
437
448
|
* // description: "STRING_VALUE",
|
|
438
449
|
* // message: "STRING_VALUE",
|
|
450
|
+
* // messages: [
|
|
451
|
+
* // {
|
|
452
|
+
* // language: "STRING_VALUE", // required
|
|
453
|
+
* // text: "STRING_VALUE", // required
|
|
454
|
+
* // },
|
|
455
|
+
* // ],
|
|
439
456
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
440
457
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
441
458
|
* // },
|
|
@@ -494,6 +511,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
494
511
|
* // },
|
|
495
512
|
* // ],
|
|
496
513
|
* // startMessage: "STRING_VALUE",
|
|
514
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
497
515
|
* // pipeline: {
|
|
498
516
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
499
517
|
* // instructions: "STRING_VALUE",
|
|
@@ -507,6 +525,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
507
525
|
* // connector: {
|
|
508
526
|
* // id: "STRING_VALUE", // required
|
|
509
527
|
* // startMessage: "STRING_VALUE",
|
|
528
|
+
* // startMessages: "<AgentSpokenPhraseList>",
|
|
510
529
|
* // pipeline: {
|
|
511
530
|
* // type: "blocking_request" || "blocking_request_guided" || "async_request" || "async_request_guided",
|
|
512
531
|
* // instructions: "STRING_VALUE",
|
|
@@ -595,6 +614,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
595
614
|
* // name: "STRING_VALUE",
|
|
596
615
|
* // description: "STRING_VALUE",
|
|
597
616
|
* // message: "STRING_VALUE",
|
|
617
|
+
* // messages: "<AgentSpokenPhraseList>",
|
|
598
618
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
599
619
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
600
620
|
* // },
|
|
@@ -673,6 +693,9 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
673
693
|
* // kb: {
|
|
674
694
|
* // knowledgeBaseId: "STRING_VALUE",
|
|
675
695
|
* // instructions: "STRING_VALUE",
|
|
696
|
+
* // searchStrategy: "bm25" || "vector" || "hybrid",
|
|
697
|
+
* // searchThreshold: "low" || "medium" || "high",
|
|
698
|
+
* // searchLimit: Number("int"),
|
|
676
699
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
677
700
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
678
701
|
* // },
|
|
@@ -710,6 +733,7 @@ declare const RestoreAgentVersionToDraftCommand_base: {
|
|
|
710
733
|
* // transfer: "<AgentTransferCapability>",
|
|
711
734
|
* // suggestions: {
|
|
712
735
|
* // name: "STRING_VALUE",
|
|
736
|
+
* // instructions: "STRING_VALUE",
|
|
713
737
|
* // channels: "<AgentCapabilityChannelsList>",
|
|
714
738
|
* // annotations: "<AgentToolAnnotationsList>",
|
|
715
739
|
* // },
|