@vendasta/ai-assistants 0.41.0 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/_internal/enums/assistant.enum.mjs +2 -1
- package/esm2020/lib/_internal/interfaces/annotations.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/assistant.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/annotations.mjs +21 -1
- package/esm2020/lib/_internal/objects/api.mjs +77 -71
- package/esm2020/lib/_internal/objects/assistant.mjs +27 -1
- package/esm2020/lib/_internal/objects/index.mjs +4 -4
- package/fesm2015/vendasta-ai-assistants.mjs +124 -71
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +124 -71
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/assistant.enum.d.ts +2 -1
- package/lib/_internal/interfaces/annotations.interface.d.ts +3 -0
- package/lib/_internal/interfaces/api.interface.d.ts +17 -16
- package/lib/_internal/interfaces/assistant.interface.d.ts +4 -0
- package/lib/_internal/interfaces/index.d.ts +3 -3
- package/lib/_internal/objects/annotations.d.ts +6 -0
- package/lib/_internal/objects/api.d.ts +36 -35
- package/lib/_internal/objects/assistant.d.ts +7 -0
- package/lib/_internal/objects/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -113,6 +113,7 @@ var VendorModel;
|
|
|
113
113
|
VendorModel[VendorModel["VENDOR_MODEL_UNSPECIFIED"] = 0] = "VENDOR_MODEL_UNSPECIFIED";
|
|
114
114
|
VendorModel[VendorModel["VENDOR_MODEL_OPEN_AI_REALTIME"] = 1] = "VENDOR_MODEL_OPEN_AI_REALTIME";
|
|
115
115
|
VendorModel[VendorModel["VENDOR_MODEL_DEEPGRAM"] = 2] = "VENDOR_MODEL_DEEPGRAM";
|
|
116
|
+
VendorModel[VendorModel["VENDOR_MODEL_ELEVEN_LABS"] = 3] = "VENDOR_MODEL_ELEVEN_LABS";
|
|
116
117
|
})(VendorModel || (VendorModel = {}));
|
|
117
118
|
|
|
118
119
|
// *********************************
|
|
@@ -1078,6 +1079,26 @@ class DeepgramConfig {
|
|
|
1078
1079
|
return toReturn;
|
|
1079
1080
|
}
|
|
1080
1081
|
}
|
|
1082
|
+
class ElevenLabsConfig {
|
|
1083
|
+
static fromProto(proto) {
|
|
1084
|
+
let m = new ElevenLabsConfig();
|
|
1085
|
+
m = Object.assign(m, proto);
|
|
1086
|
+
return m;
|
|
1087
|
+
}
|
|
1088
|
+
constructor(kwargs) {
|
|
1089
|
+
if (!kwargs) {
|
|
1090
|
+
return;
|
|
1091
|
+
}
|
|
1092
|
+
Object.assign(this, kwargs);
|
|
1093
|
+
}
|
|
1094
|
+
toApiJson() {
|
|
1095
|
+
const toReturn = {};
|
|
1096
|
+
if (typeof this.voice !== 'undefined') {
|
|
1097
|
+
toReturn['voice'] = this.voice;
|
|
1098
|
+
}
|
|
1099
|
+
return toReturn;
|
|
1100
|
+
}
|
|
1101
|
+
}
|
|
1081
1102
|
class ConfigInboxConfig {
|
|
1082
1103
|
static fromProto(proto) {
|
|
1083
1104
|
let m = new ConfigInboxConfig();
|
|
@@ -1111,6 +1132,9 @@ class ModelConfig {
|
|
|
1111
1132
|
if (proto.deepgramConfig) {
|
|
1112
1133
|
m.deepgramConfig = DeepgramConfig.fromProto(proto.deepgramConfig);
|
|
1113
1134
|
}
|
|
1135
|
+
if (proto.elevenLabsConfig) {
|
|
1136
|
+
m.elevenLabsConfig = ElevenLabsConfig.fromProto(proto.elevenLabsConfig);
|
|
1137
|
+
}
|
|
1114
1138
|
return m;
|
|
1115
1139
|
}
|
|
1116
1140
|
constructor(kwargs) {
|
|
@@ -1127,6 +1151,9 @@ class ModelConfig {
|
|
|
1127
1151
|
if (typeof this.deepgramConfig !== 'undefined' && this.deepgramConfig !== null) {
|
|
1128
1152
|
toReturn['deepgramConfig'] = 'toApiJson' in this.deepgramConfig ? this.deepgramConfig.toApiJson() : this.deepgramConfig;
|
|
1129
1153
|
}
|
|
1154
|
+
if (typeof this.elevenLabsConfig !== 'undefined' && this.elevenLabsConfig !== null) {
|
|
1155
|
+
toReturn['elevenLabsConfig'] = 'toApiJson' in this.elevenLabsConfig ? this.elevenLabsConfig.toApiJson() : this.elevenLabsConfig;
|
|
1156
|
+
}
|
|
1130
1157
|
return toReturn;
|
|
1131
1158
|
}
|
|
1132
1159
|
}
|
|
@@ -2054,6 +2081,26 @@ class Access {
|
|
|
2054
2081
|
return toReturn;
|
|
2055
2082
|
}
|
|
2056
2083
|
}
|
|
2084
|
+
class MCPOptions {
|
|
2085
|
+
static fromProto(proto) {
|
|
2086
|
+
let m = new MCPOptions();
|
|
2087
|
+
m = Object.assign(m, proto);
|
|
2088
|
+
return m;
|
|
2089
|
+
}
|
|
2090
|
+
constructor(kwargs) {
|
|
2091
|
+
if (!kwargs) {
|
|
2092
|
+
return;
|
|
2093
|
+
}
|
|
2094
|
+
Object.assign(this, kwargs);
|
|
2095
|
+
}
|
|
2096
|
+
toApiJson() {
|
|
2097
|
+
const toReturn = {};
|
|
2098
|
+
if (typeof this.serverId !== 'undefined') {
|
|
2099
|
+
toReturn['serverId'] = this.serverId;
|
|
2100
|
+
}
|
|
2101
|
+
return toReturn;
|
|
2102
|
+
}
|
|
2103
|
+
}
|
|
2057
2104
|
|
|
2058
2105
|
function enumStringToValue$1(enumRef, value) {
|
|
2059
2106
|
if (typeof value === 'number') {
|
|
@@ -2646,29 +2693,6 @@ class ExecuteFunctionResponse {
|
|
|
2646
2693
|
return toReturn;
|
|
2647
2694
|
}
|
|
2648
2695
|
}
|
|
2649
|
-
class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
2650
|
-
static fromProto(proto) {
|
|
2651
|
-
let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
|
|
2652
|
-
m = Object.assign(m, proto);
|
|
2653
|
-
if (proto.type) {
|
|
2654
|
-
m.type = enumStringToValue(AssistantType, proto.type);
|
|
2655
|
-
}
|
|
2656
|
-
return m;
|
|
2657
|
-
}
|
|
2658
|
-
constructor(kwargs) {
|
|
2659
|
-
if (!kwargs) {
|
|
2660
|
-
return;
|
|
2661
|
-
}
|
|
2662
|
-
Object.assign(this, kwargs);
|
|
2663
|
-
}
|
|
2664
|
-
toApiJson() {
|
|
2665
|
-
const toReturn = {};
|
|
2666
|
-
if (typeof this.type !== 'undefined') {
|
|
2667
|
-
toReturn['type'] = this.type;
|
|
2668
|
-
}
|
|
2669
|
-
return toReturn;
|
|
2670
|
-
}
|
|
2671
|
-
}
|
|
2672
2696
|
class ListConnectionsRequestFilters {
|
|
2673
2697
|
static fromProto(proto) {
|
|
2674
2698
|
let m = new ListConnectionsRequestFilters();
|
|
@@ -2698,12 +2722,15 @@ class ListConnectionsRequestFilters {
|
|
|
2698
2722
|
return toReturn;
|
|
2699
2723
|
}
|
|
2700
2724
|
}
|
|
2701
|
-
class
|
|
2725
|
+
class ListAvailableModelsRequestFilters {
|
|
2702
2726
|
static fromProto(proto) {
|
|
2703
|
-
let m = new
|
|
2727
|
+
let m = new ListAvailableModelsRequestFilters();
|
|
2704
2728
|
m = Object.assign(m, proto);
|
|
2705
|
-
if (proto.
|
|
2706
|
-
m.
|
|
2729
|
+
if (proto.vendor) {
|
|
2730
|
+
m.vendor = proto.vendor.map((v) => enumStringToValue(ModelVendor, v));
|
|
2731
|
+
}
|
|
2732
|
+
if (proto.type) {
|
|
2733
|
+
m.type = proto.type.map((v) => enumStringToValue(ModelType, v));
|
|
2707
2734
|
}
|
|
2708
2735
|
return m;
|
|
2709
2736
|
}
|
|
@@ -2715,18 +2742,21 @@ class ListFunctionRequestFilters {
|
|
|
2715
2742
|
}
|
|
2716
2743
|
toApiJson() {
|
|
2717
2744
|
const toReturn = {};
|
|
2718
|
-
if (typeof this.
|
|
2719
|
-
toReturn['
|
|
2745
|
+
if (typeof this.vendor !== 'undefined') {
|
|
2746
|
+
toReturn['vendor'] = this.vendor;
|
|
2747
|
+
}
|
|
2748
|
+
if (typeof this.type !== 'undefined') {
|
|
2749
|
+
toReturn['type'] = this.type;
|
|
2720
2750
|
}
|
|
2721
2751
|
return toReturn;
|
|
2722
2752
|
}
|
|
2723
2753
|
}
|
|
2724
|
-
class
|
|
2754
|
+
class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
2725
2755
|
static fromProto(proto) {
|
|
2726
|
-
let m = new
|
|
2756
|
+
let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
|
|
2727
2757
|
m = Object.assign(m, proto);
|
|
2728
|
-
if (proto.
|
|
2729
|
-
m.
|
|
2758
|
+
if (proto.type) {
|
|
2759
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
2730
2760
|
}
|
|
2731
2761
|
return m;
|
|
2732
2762
|
}
|
|
@@ -2738,8 +2768,8 @@ class ListPromptModuleRequestFilters {
|
|
|
2738
2768
|
}
|
|
2739
2769
|
toApiJson() {
|
|
2740
2770
|
const toReturn = {};
|
|
2741
|
-
if (typeof this.
|
|
2742
|
-
toReturn['
|
|
2771
|
+
if (typeof this.type !== 'undefined') {
|
|
2772
|
+
toReturn['type'] = this.type;
|
|
2743
2773
|
}
|
|
2744
2774
|
return toReturn;
|
|
2745
2775
|
}
|
|
@@ -2814,15 +2844,15 @@ class ListAssistantRequestFilters {
|
|
|
2814
2844
|
return toReturn;
|
|
2815
2845
|
}
|
|
2816
2846
|
}
|
|
2817
|
-
class
|
|
2847
|
+
class ListFunctionRequestFilters {
|
|
2818
2848
|
static fromProto(proto) {
|
|
2819
|
-
let m = new
|
|
2849
|
+
let m = new ListFunctionRequestFilters();
|
|
2820
2850
|
m = Object.assign(m, proto);
|
|
2821
|
-
if (proto.
|
|
2822
|
-
m.
|
|
2851
|
+
if (proto.namespace) {
|
|
2852
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
2823
2853
|
}
|
|
2824
|
-
if (proto.
|
|
2825
|
-
m.
|
|
2854
|
+
if (proto.namespaces) {
|
|
2855
|
+
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
2826
2856
|
}
|
|
2827
2857
|
return m;
|
|
2828
2858
|
}
|
|
@@ -2834,11 +2864,34 @@ class ListAvailableModelsRequestFilters {
|
|
|
2834
2864
|
}
|
|
2835
2865
|
toApiJson() {
|
|
2836
2866
|
const toReturn = {};
|
|
2837
|
-
if (typeof this.
|
|
2838
|
-
toReturn['
|
|
2867
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
2868
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
2839
2869
|
}
|
|
2840
|
-
if (typeof this.
|
|
2841
|
-
toReturn['
|
|
2870
|
+
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
2871
|
+
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
2872
|
+
}
|
|
2873
|
+
return toReturn;
|
|
2874
|
+
}
|
|
2875
|
+
}
|
|
2876
|
+
class ListPromptModuleRequestFilters {
|
|
2877
|
+
static fromProto(proto) {
|
|
2878
|
+
let m = new ListPromptModuleRequestFilters();
|
|
2879
|
+
m = Object.assign(m, proto);
|
|
2880
|
+
if (proto.namespace) {
|
|
2881
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
2882
|
+
}
|
|
2883
|
+
return m;
|
|
2884
|
+
}
|
|
2885
|
+
constructor(kwargs) {
|
|
2886
|
+
if (!kwargs) {
|
|
2887
|
+
return;
|
|
2888
|
+
}
|
|
2889
|
+
Object.assign(this, kwargs);
|
|
2890
|
+
}
|
|
2891
|
+
toApiJson() {
|
|
2892
|
+
const toReturn = {};
|
|
2893
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
2894
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
2842
2895
|
}
|
|
2843
2896
|
return toReturn;
|
|
2844
2897
|
}
|
|
@@ -4335,13 +4388,10 @@ class ListPromptVersionsResponse {
|
|
|
4335
4388
|
return toReturn;
|
|
4336
4389
|
}
|
|
4337
4390
|
}
|
|
4338
|
-
class
|
|
4391
|
+
class UpsertAssistantRequestOptions {
|
|
4339
4392
|
static fromProto(proto) {
|
|
4340
|
-
let m = new
|
|
4393
|
+
let m = new UpsertAssistantRequestOptions();
|
|
4341
4394
|
m = Object.assign(m, proto);
|
|
4342
|
-
if (proto.maxTokens) {
|
|
4343
|
-
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
4344
|
-
}
|
|
4345
4395
|
return m;
|
|
4346
4396
|
}
|
|
4347
4397
|
constructor(kwargs) {
|
|
@@ -4352,14 +4402,8 @@ class GenerateChatAnswerRequestOptions {
|
|
|
4352
4402
|
}
|
|
4353
4403
|
toApiJson() {
|
|
4354
4404
|
const toReturn = {};
|
|
4355
|
-
if (typeof this.
|
|
4356
|
-
toReturn['
|
|
4357
|
-
}
|
|
4358
|
-
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
4359
|
-
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
4360
|
-
}
|
|
4361
|
-
if (typeof this.maxTokens !== 'undefined') {
|
|
4362
|
-
toReturn['maxTokens'] = this.maxTokens;
|
|
4405
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
4406
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
4363
4407
|
}
|
|
4364
4408
|
return toReturn;
|
|
4365
4409
|
}
|
|
@@ -4384,9 +4428,9 @@ class CreateAssistantRequestOptions {
|
|
|
4384
4428
|
return toReturn;
|
|
4385
4429
|
}
|
|
4386
4430
|
}
|
|
4387
|
-
class
|
|
4431
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
4388
4432
|
static fromProto(proto) {
|
|
4389
|
-
let m = new
|
|
4433
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
4390
4434
|
m = Object.assign(m, proto);
|
|
4391
4435
|
return m;
|
|
4392
4436
|
}
|
|
@@ -4398,16 +4442,19 @@ class GetAssistantRequestOptions {
|
|
|
4398
4442
|
}
|
|
4399
4443
|
toApiJson() {
|
|
4400
4444
|
const toReturn = {};
|
|
4401
|
-
if (typeof this.
|
|
4402
|
-
toReturn['
|
|
4445
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
4446
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
4403
4447
|
}
|
|
4404
4448
|
return toReturn;
|
|
4405
4449
|
}
|
|
4406
4450
|
}
|
|
4407
|
-
class
|
|
4451
|
+
class GenerateChatAnswerRequestOptions {
|
|
4408
4452
|
static fromProto(proto) {
|
|
4409
|
-
let m = new
|
|
4453
|
+
let m = new GenerateChatAnswerRequestOptions();
|
|
4410
4454
|
m = Object.assign(m, proto);
|
|
4455
|
+
if (proto.maxTokens) {
|
|
4456
|
+
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
4457
|
+
}
|
|
4411
4458
|
return m;
|
|
4412
4459
|
}
|
|
4413
4460
|
constructor(kwargs) {
|
|
@@ -4418,15 +4465,21 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
4418
4465
|
}
|
|
4419
4466
|
toApiJson() {
|
|
4420
4467
|
const toReturn = {};
|
|
4421
|
-
if (typeof this.
|
|
4422
|
-
toReturn['
|
|
4468
|
+
if (typeof this.includeAllCitations !== 'undefined') {
|
|
4469
|
+
toReturn['includeAllCitations'] = this.includeAllCitations;
|
|
4470
|
+
}
|
|
4471
|
+
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
4472
|
+
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
4473
|
+
}
|
|
4474
|
+
if (typeof this.maxTokens !== 'undefined') {
|
|
4475
|
+
toReturn['maxTokens'] = this.maxTokens;
|
|
4423
4476
|
}
|
|
4424
4477
|
return toReturn;
|
|
4425
4478
|
}
|
|
4426
4479
|
}
|
|
4427
|
-
class
|
|
4480
|
+
class GetAssistantRequestOptions {
|
|
4428
4481
|
static fromProto(proto) {
|
|
4429
|
-
let m = new
|
|
4482
|
+
let m = new GetAssistantRequestOptions();
|
|
4430
4483
|
m = Object.assign(m, proto);
|
|
4431
4484
|
return m;
|
|
4432
4485
|
}
|
|
@@ -4438,8 +4491,8 @@ class UpsertAssistantRequestOptions {
|
|
|
4438
4491
|
}
|
|
4439
4492
|
toApiJson() {
|
|
4440
4493
|
const toReturn = {};
|
|
4441
|
-
if (typeof this.
|
|
4442
|
-
toReturn['
|
|
4494
|
+
if (typeof this.skipGoalsHydration !== 'undefined') {
|
|
4495
|
+
toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
|
|
4443
4496
|
}
|
|
4444
4497
|
return toReturn;
|
|
4445
4498
|
}
|
|
@@ -5193,5 +5246,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
5193
5246
|
* Generated bundle index. Do not edit.
|
|
5194
5247
|
*/
|
|
5195
5248
|
|
|
5196
|
-
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, ContextInfo, CreateAssistantRequest, CreateAssistantRequestOptions, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantRequestOptions, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, GetTestRunRequest, GetTestRunResponse, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, HostService, IntegrationTestApiService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsRequestFilters, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, Model, ModelConfig, ModelType, ModelVendor, Namespace, NamespaceAccountGroupNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, RunTestsRequest, RunTestsResponse, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SortDirection, SortOptions, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertTestCasesRequest, VendorModel };
|
|
5249
|
+
export { Access, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, ContextInfo, CreateAssistantRequest, CreateAssistantRequestOptions, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, CreatePromptRequest, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, DeployPromptRequest, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantRequestOptions, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, GetTestRunRequest, GetTestRunResponse, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, HostService, IntegrationTestApiService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsRequestFilters, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, MCPOptions, Model, ModelConfig, ModelType, ModelVendor, Namespace, NamespaceAccountGroupNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, Prompt, PromptApiService, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, PromptVersion, RunTestsRequest, RunTestsResponse, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SortDirection, SortOptions, TestCase, TestResult, TestResultCitation, TestRun, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertTestCasesRequest, VendorModel };
|
|
5197
5250
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|