@vendasta/ai-assistants 0.68.0 → 0.70.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.
Files changed (29) hide show
  1. package/esm2020/lib/_internal/enums/agent-role.enum.mjs +13 -0
  2. package/esm2020/lib/_internal/enums/index.mjs +2 -1
  3. package/esm2020/lib/_internal/interfaces/answer.interface.mjs +1 -1
  4. package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
  5. package/esm2020/lib/_internal/interfaces/goal.interface.mjs +1 -1
  6. package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
  7. package/esm2020/lib/_internal/interfaces/integration-tests.interface.mjs +1 -1
  8. package/esm2020/lib/_internal/objects/answer.mjs +37 -1
  9. package/esm2020/lib/_internal/objects/api.mjs +148 -183
  10. package/esm2020/lib/_internal/objects/goal.mjs +7 -1
  11. package/esm2020/lib/_internal/objects/index.mjs +4 -4
  12. package/esm2020/lib/_internal/objects/integration-tests.mjs +46 -2
  13. package/fesm2015/vendasta-ai-assistants.mjs +245 -182
  14. package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
  15. package/fesm2020/vendasta-ai-assistants.mjs +245 -182
  16. package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
  17. package/lib/_internal/enums/agent-role.enum.d.ts +5 -0
  18. package/lib/_internal/enums/index.d.ts +1 -0
  19. package/lib/_internal/interfaces/answer.interface.d.ts +8 -0
  20. package/lib/_internal/interfaces/api.interface.d.ts +33 -40
  21. package/lib/_internal/interfaces/goal.interface.d.ts +1 -0
  22. package/lib/_internal/interfaces/index.d.ts +3 -3
  23. package/lib/_internal/interfaces/integration-tests.interface.d.ts +9 -1
  24. package/lib/_internal/objects/answer.d.ts +11 -0
  25. package/lib/_internal/objects/api.d.ts +60 -70
  26. package/lib/_internal/objects/goal.d.ts +1 -0
  27. package/lib/_internal/objects/index.d.ts +3 -3
  28. package/lib/_internal/objects/integration-tests.d.ts +12 -1
  29. package/package.json +1 -1
@@ -91,6 +91,19 @@ var FunctionParameterParameterLocation;
91
91
  FunctionParameterParameterLocation[FunctionParameterParameterLocation["LOCATION_QUERY_PARAM"] = 1] = "LOCATION_QUERY_PARAM";
92
92
  })(FunctionParameterParameterLocation || (FunctionParameterParameterLocation = {}));
93
93
 
94
+ // *********************************
95
+ // Code generated by sdkgen
96
+ // DO NOT EDIT!.
97
+ //
98
+ // Enums.
99
+ // *********************************
100
+ var AgentRole;
101
+ (function (AgentRole) {
102
+ AgentRole[AgentRole["AGENT_ROLE_UNSPECIFIED"] = 0] = "AGENT_ROLE_UNSPECIFIED";
103
+ AgentRole[AgentRole["AGENT_ROLE_SUBAGENT"] = 1] = "AGENT_ROLE_SUBAGENT";
104
+ AgentRole[AgentRole["AGENT_ROLE_SUPERVISOR"] = 2] = "AGENT_ROLE_SUPERVISOR";
105
+ })(AgentRole || (AgentRole = {}));
106
+
94
107
  // *********************************
95
108
  // Code generated by sdkgen
96
109
  // DO NOT EDIT!.
@@ -1612,6 +1625,9 @@ class Goal {
1612
1625
  if (proto.constraints) {
1613
1626
  m.constraints = proto.constraints.map(Constraint.fromProto);
1614
1627
  }
1628
+ if (proto.agentRole) {
1629
+ m.agentRole = enumStringToValue$9(AgentRole, proto.agentRole);
1630
+ }
1615
1631
  return m;
1616
1632
  }
1617
1633
  constructor(kwargs) {
@@ -1664,6 +1680,9 @@ class Goal {
1664
1680
  if (typeof this.sourcePath !== 'undefined') {
1665
1681
  toReturn['sourcePath'] = this.sourcePath;
1666
1682
  }
1683
+ if (typeof this.agentRole !== 'undefined') {
1684
+ toReturn['agentRole'] = this.agentRole;
1685
+ }
1667
1686
  return toReturn;
1668
1687
  }
1669
1688
  }
@@ -2634,6 +2653,41 @@ class ImageContent {
2634
2653
  return toReturn;
2635
2654
  }
2636
2655
  }
2656
+ class ToolCall {
2657
+ static fromProto(proto) {
2658
+ let m = new ToolCall();
2659
+ m = Object.assign(m, proto);
2660
+ if (proto.namespace) {
2661
+ m.namespace = Namespace.fromProto(proto.namespace);
2662
+ }
2663
+ return m;
2664
+ }
2665
+ constructor(kwargs) {
2666
+ if (!kwargs) {
2667
+ return;
2668
+ }
2669
+ Object.assign(this, kwargs);
2670
+ }
2671
+ toApiJson() {
2672
+ const toReturn = {};
2673
+ if (typeof this.toolName !== 'undefined') {
2674
+ toReturn['toolName'] = this.toolName;
2675
+ }
2676
+ if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
2677
+ toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
2678
+ }
2679
+ if (typeof this.arguments !== 'undefined') {
2680
+ toReturn['arguments'] = this.arguments;
2681
+ }
2682
+ if (typeof this.response !== 'undefined') {
2683
+ toReturn['response'] = this.response;
2684
+ }
2685
+ if (typeof this.noOp !== 'undefined') {
2686
+ toReturn['noOp'] = this.noOp;
2687
+ }
2688
+ return toReturn;
2689
+ }
2690
+ }
2637
2691
 
2638
2692
  function enumStringToValue$3(enumRef, value) {
2639
2693
  if (typeof value === 'number') {
@@ -2734,6 +2788,32 @@ class DeleteTestCasesRequest {
2734
2788
  return toReturn;
2735
2789
  }
2736
2790
  }
2791
+ class ExpectedToolCall {
2792
+ static fromProto(proto) {
2793
+ let m = new ExpectedToolCall();
2794
+ m = Object.assign(m, proto);
2795
+ return m;
2796
+ }
2797
+ constructor(kwargs) {
2798
+ if (!kwargs) {
2799
+ return;
2800
+ }
2801
+ Object.assign(this, kwargs);
2802
+ }
2803
+ toApiJson() {
2804
+ const toReturn = {};
2805
+ if (typeof this.name !== 'undefined') {
2806
+ toReturn['name'] = this.name;
2807
+ }
2808
+ if (typeof this.arguments !== 'undefined') {
2809
+ toReturn['arguments'] = this.arguments;
2810
+ }
2811
+ if (typeof this.response !== 'undefined') {
2812
+ toReturn['response'] = this.response;
2813
+ }
2814
+ return toReturn;
2815
+ }
2816
+ }
2737
2817
  class GetTestRunRequest {
2738
2818
  static fromProto(proto) {
2739
2819
  let m = new GetTestRunRequest();
@@ -2993,6 +3073,9 @@ class TestCase {
2993
3073
  if (proto.chatHistory) {
2994
3074
  m.chatHistory = proto.chatHistory.map(ChatMessage.fromProto);
2995
3075
  }
3076
+ if (proto.expectedToolCalls) {
3077
+ m.expectedToolCalls = proto.expectedToolCalls.map(ExpectedToolCall.fromProto);
3078
+ }
2996
3079
  return m;
2997
3080
  }
2998
3081
  constructor(kwargs) {
@@ -3015,6 +3098,9 @@ class TestCase {
3015
3098
  if (typeof this.expectation !== 'undefined') {
3016
3099
  toReturn['expectation'] = this.expectation;
3017
3100
  }
3101
+ if (typeof this.expectedToolCalls !== 'undefined' && this.expectedToolCalls !== null) {
3102
+ toReturn['expectedToolCalls'] = 'toApiJson' in this.expectedToolCalls ? this.expectedToolCalls.toApiJson() : this.expectedToolCalls;
3103
+ }
3018
3104
  return toReturn;
3019
3105
  }
3020
3106
  }
@@ -3054,6 +3140,12 @@ class TestResult {
3054
3140
  if (proto.llmOptions) {
3055
3141
  m.llmOptions = TestLLMOptions.fromProto(proto.llmOptions);
3056
3142
  }
3143
+ if (proto.expectedToolCalls) {
3144
+ m.expectedToolCalls = proto.expectedToolCalls.map(ExpectedToolCall.fromProto);
3145
+ }
3146
+ if (proto.toolCalls) {
3147
+ m.toolCalls = proto.toolCalls.map(ToolCall.fromProto);
3148
+ }
3057
3149
  return m;
3058
3150
  }
3059
3151
  constructor(kwargs) {
@@ -3097,6 +3189,12 @@ class TestResult {
3097
3189
  if (typeof this.latency !== 'undefined') {
3098
3190
  toReturn['latency'] = this.latency;
3099
3191
  }
3192
+ if (typeof this.expectedToolCalls !== 'undefined' && this.expectedToolCalls !== null) {
3193
+ toReturn['expectedToolCalls'] = 'toApiJson' in this.expectedToolCalls ? this.expectedToolCalls.toApiJson() : this.expectedToolCalls;
3194
+ }
3195
+ if (typeof this.toolCalls !== 'undefined' && this.toolCalls !== null) {
3196
+ toReturn['toolCalls'] = 'toApiJson' in this.toolCalls ? this.toolCalls.toApiJson() : this.toolCalls;
3197
+ }
3100
3198
  return toReturn;
3101
3199
  }
3102
3200
  }
@@ -3755,15 +3853,27 @@ class ExecuteFunctionResponse {
3755
3853
  return toReturn;
3756
3854
  }
3757
3855
  }
3758
- class ListAssistantRequestFilters {
3856
+ class ListGoalsRequestFilters {
3759
3857
  static fromProto(proto) {
3760
- let m = new ListAssistantRequestFilters();
3858
+ let m = new ListGoalsRequestFilters();
3761
3859
  m = Object.assign(m, proto);
3762
3860
  if (proto.namespace) {
3763
3861
  m.namespace = Namespace.fromProto(proto.namespace);
3764
3862
  }
3765
3863
  if (proto.type) {
3766
- m.type = enumStringToValue(AssistantType, proto.type);
3864
+ m.type = enumStringToValue(GoalType, proto.type);
3865
+ }
3866
+ if (proto.supportedChannels) {
3867
+ m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
3868
+ }
3869
+ if (proto.namespaces) {
3870
+ m.namespaces = proto.namespaces.map(Namespace.fromProto);
3871
+ }
3872
+ if (proto.constraintFilters) {
3873
+ m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
3874
+ }
3875
+ if (proto.sortOptions) {
3876
+ m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
3767
3877
  }
3768
3878
  return m;
3769
3879
  }
@@ -3781,18 +3891,36 @@ class ListAssistantRequestFilters {
3781
3891
  if (typeof this.type !== 'undefined') {
3782
3892
  toReturn['type'] = this.type;
3783
3893
  }
3894
+ if (typeof this.supportedChannels !== 'undefined') {
3895
+ toReturn['supportedChannels'] = this.supportedChannels;
3896
+ }
3897
+ if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
3898
+ toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
3899
+ }
3900
+ if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
3901
+ toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
3902
+ }
3903
+ if (typeof this.searchTerm !== 'undefined') {
3904
+ toReturn['searchTerm'] = this.searchTerm;
3905
+ }
3906
+ if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
3907
+ toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
3908
+ }
3909
+ if (typeof this.omitOverrides !== 'undefined') {
3910
+ toReturn['omitOverrides'] = this.omitOverrides;
3911
+ }
3784
3912
  return toReturn;
3785
3913
  }
3786
3914
  }
3787
- class ListAvailableModelsRequestFilters {
3915
+ class ListAssistantRequestFilters {
3788
3916
  static fromProto(proto) {
3789
- let m = new ListAvailableModelsRequestFilters();
3917
+ let m = new ListAssistantRequestFilters();
3790
3918
  m = Object.assign(m, proto);
3791
- if (proto.vendor) {
3792
- m.vendor = proto.vendor.map((v) => enumStringToValue(ModelVendor, v));
3919
+ if (proto.namespace) {
3920
+ m.namespace = Namespace.fromProto(proto.namespace);
3793
3921
  }
3794
3922
  if (proto.type) {
3795
- m.type = proto.type.map((v) => enumStringToValue(ModelType, v));
3923
+ m.type = enumStringToValue(AssistantType, proto.type);
3796
3924
  }
3797
3925
  return m;
3798
3926
  }
@@ -3804,8 +3932,8 @@ class ListAvailableModelsRequestFilters {
3804
3932
  }
3805
3933
  toApiJson() {
3806
3934
  const toReturn = {};
3807
- if (typeof this.vendor !== 'undefined') {
3808
- toReturn['vendor'] = this.vendor;
3935
+ if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3936
+ toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3809
3937
  }
3810
3938
  if (typeof this.type !== 'undefined') {
3811
3939
  toReturn['type'] = this.type;
@@ -3813,13 +3941,19 @@ class ListAvailableModelsRequestFilters {
3813
3941
  return toReturn;
3814
3942
  }
3815
3943
  }
3816
- class ListPromptModuleRequestFilters {
3944
+ class ListFunctionRequestFilters {
3817
3945
  static fromProto(proto) {
3818
- let m = new ListPromptModuleRequestFilters();
3946
+ let m = new ListFunctionRequestFilters();
3819
3947
  m = Object.assign(m, proto);
3820
3948
  if (proto.namespace) {
3821
3949
  m.namespace = Namespace.fromProto(proto.namespace);
3822
3950
  }
3951
+ if (proto.namespaces) {
3952
+ m.namespaces = proto.namespaces.map(Namespace.fromProto);
3953
+ }
3954
+ if (proto.constraintFilters) {
3955
+ m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
3956
+ }
3823
3957
  return m;
3824
3958
  }
3825
3959
  constructor(kwargs) {
@@ -3833,30 +3967,27 @@ class ListPromptModuleRequestFilters {
3833
3967
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3834
3968
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3835
3969
  }
3970
+ if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
3971
+ toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
3972
+ }
3973
+ if (typeof this.mcpId !== 'undefined') {
3974
+ toReturn['mcpId'] = this.mcpId;
3975
+ }
3976
+ if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
3977
+ toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
3978
+ }
3836
3979
  return toReturn;
3837
3980
  }
3838
3981
  }
3839
- class ListGoalsRequestFilters {
3982
+ class ListAvailableModelsRequestFilters {
3840
3983
  static fromProto(proto) {
3841
- let m = new ListGoalsRequestFilters();
3984
+ let m = new ListAvailableModelsRequestFilters();
3842
3985
  m = Object.assign(m, proto);
3843
- if (proto.namespace) {
3844
- m.namespace = Namespace.fromProto(proto.namespace);
3986
+ if (proto.vendor) {
3987
+ m.vendor = proto.vendor.map((v) => enumStringToValue(ModelVendor, v));
3845
3988
  }
3846
3989
  if (proto.type) {
3847
- m.type = enumStringToValue(GoalType, proto.type);
3848
- }
3849
- if (proto.supportedChannels) {
3850
- m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
3851
- }
3852
- if (proto.namespaces) {
3853
- m.namespaces = proto.namespaces.map(Namespace.fromProto);
3854
- }
3855
- if (proto.constraintFilters) {
3856
- m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
3857
- }
3858
- if (proto.sortOptions) {
3859
- m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
3990
+ m.type = proto.type.map((v) => enumStringToValue(ModelType, v));
3860
3991
  }
3861
3992
  return m;
3862
3993
  }
@@ -3868,45 +3999,21 @@ class ListGoalsRequestFilters {
3868
3999
  }
3869
4000
  toApiJson() {
3870
4001
  const toReturn = {};
3871
- if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3872
- toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
4002
+ if (typeof this.vendor !== 'undefined') {
4003
+ toReturn['vendor'] = this.vendor;
3873
4004
  }
3874
4005
  if (typeof this.type !== 'undefined') {
3875
4006
  toReturn['type'] = this.type;
3876
4007
  }
3877
- if (typeof this.supportedChannels !== 'undefined') {
3878
- toReturn['supportedChannels'] = this.supportedChannels;
3879
- }
3880
- if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
3881
- toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
3882
- }
3883
- if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
3884
- toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
3885
- }
3886
- if (typeof this.searchTerm !== 'undefined') {
3887
- toReturn['searchTerm'] = this.searchTerm;
3888
- }
3889
- if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
3890
- toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
3891
- }
3892
- if (typeof this.omitOverrides !== 'undefined') {
3893
- toReturn['omitOverrides'] = this.omitOverrides;
3894
- }
3895
4008
  return toReturn;
3896
4009
  }
3897
4010
  }
3898
- class ListFunctionRequestFilters {
4011
+ class ListAllAssistantsAssociatedToConnectionRequestFilters {
3899
4012
  static fromProto(proto) {
3900
- let m = new ListFunctionRequestFilters();
4013
+ let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
3901
4014
  m = Object.assign(m, proto);
3902
- if (proto.namespace) {
3903
- m.namespace = Namespace.fromProto(proto.namespace);
3904
- }
3905
- if (proto.namespaces) {
3906
- m.namespaces = proto.namespaces.map(Namespace.fromProto);
3907
- }
3908
- if (proto.constraintFilters) {
3909
- m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
4015
+ if (proto.type) {
4016
+ m.type = enumStringToValue(AssistantType, proto.type);
3910
4017
  }
3911
4018
  return m;
3912
4019
  }
@@ -3918,31 +4025,19 @@ class ListFunctionRequestFilters {
3918
4025
  }
3919
4026
  toApiJson() {
3920
4027
  const toReturn = {};
3921
- if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3922
- toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3923
- }
3924
- if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
3925
- toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
3926
- }
3927
- if (typeof this.mcpId !== 'undefined') {
3928
- toReturn['mcpId'] = this.mcpId;
3929
- }
3930
- if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
3931
- toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
4028
+ if (typeof this.type !== 'undefined') {
4029
+ toReturn['type'] = this.type;
3932
4030
  }
3933
4031
  return toReturn;
3934
4032
  }
3935
4033
  }
3936
- class ListConnectionsRequestFilters {
4034
+ class ListPromptModuleRequestFilters {
3937
4035
  static fromProto(proto) {
3938
- let m = new ListConnectionsRequestFilters();
4036
+ let m = new ListPromptModuleRequestFilters();
3939
4037
  m = Object.assign(m, proto);
3940
4038
  if (proto.namespace) {
3941
4039
  m.namespace = Namespace.fromProto(proto.namespace);
3942
4040
  }
3943
- if (proto.assistantType) {
3944
- m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
3945
- }
3946
4041
  return m;
3947
4042
  }
3948
4043
  constructor(kwargs) {
@@ -3956,18 +4051,18 @@ class ListConnectionsRequestFilters {
3956
4051
  if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
3957
4052
  toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
3958
4053
  }
3959
- if (typeof this.assistantType !== 'undefined') {
3960
- toReturn['assistantType'] = this.assistantType;
3961
- }
3962
4054
  return toReturn;
3963
4055
  }
3964
4056
  }
3965
- class ListAllAssistantsAssociatedToConnectionRequestFilters {
4057
+ class ListConnectionsRequestFilters {
3966
4058
  static fromProto(proto) {
3967
- let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
4059
+ let m = new ListConnectionsRequestFilters();
3968
4060
  m = Object.assign(m, proto);
3969
- if (proto.type) {
3970
- m.type = enumStringToValue(AssistantType, proto.type);
4061
+ if (proto.namespace) {
4062
+ m.namespace = Namespace.fromProto(proto.namespace);
4063
+ }
4064
+ if (proto.assistantType) {
4065
+ m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
3971
4066
  }
3972
4067
  return m;
3973
4068
  }
@@ -3979,8 +4074,11 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
3979
4074
  }
3980
4075
  toApiJson() {
3981
4076
  const toReturn = {};
3982
- if (typeof this.type !== 'undefined') {
3983
- toReturn['type'] = this.type;
4077
+ if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
4078
+ toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
4079
+ }
4080
+ if (typeof this.assistantType !== 'undefined') {
4081
+ toReturn['assistantType'] = this.assistantType;
3984
4082
  }
3985
4083
  return toReturn;
3986
4084
  }
@@ -5293,10 +5391,13 @@ class ListTemplateVariablesResponse {
5293
5391
  return toReturn;
5294
5392
  }
5295
5393
  }
5296
- class CreateAssistantRequestOptions {
5394
+ class GenerateChatAnswerRequestOptions {
5297
5395
  static fromProto(proto) {
5298
- let m = new CreateAssistantRequestOptions();
5396
+ let m = new GenerateChatAnswerRequestOptions();
5299
5397
  m = Object.assign(m, proto);
5398
+ if (proto.maxTokens) {
5399
+ m.maxTokens = parseInt(proto.maxTokens, 10);
5400
+ }
5300
5401
  return m;
5301
5402
  }
5302
5403
  constructor(kwargs) {
@@ -5307,15 +5408,21 @@ class CreateAssistantRequestOptions {
5307
5408
  }
5308
5409
  toApiJson() {
5309
5410
  const toReturn = {};
5310
- if (typeof this.applyDefaults !== 'undefined') {
5311
- toReturn['applyDefaults'] = this.applyDefaults;
5411
+ if (typeof this.includeAllCitations !== 'undefined') {
5412
+ toReturn['includeAllCitations'] = this.includeAllCitations;
5413
+ }
5414
+ if (typeof this.enableAsyncFunctions !== 'undefined') {
5415
+ toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
5416
+ }
5417
+ if (typeof this.maxTokens !== 'undefined') {
5418
+ toReturn['maxTokens'] = this.maxTokens;
5312
5419
  }
5313
5420
  return toReturn;
5314
5421
  }
5315
5422
  }
5316
- class UpsertAssistantRequestOptions {
5423
+ class GetMultiAssistantRequestOptions {
5317
5424
  static fromProto(proto) {
5318
- let m = new UpsertAssistantRequestOptions();
5425
+ let m = new GetMultiAssistantRequestOptions();
5319
5426
  m = Object.assign(m, proto);
5320
5427
  return m;
5321
5428
  }
@@ -5327,15 +5434,15 @@ class UpsertAssistantRequestOptions {
5327
5434
  }
5328
5435
  toApiJson() {
5329
5436
  const toReturn = {};
5330
- if (typeof this.applyDefaults !== 'undefined') {
5331
- toReturn['applyDefaults'] = this.applyDefaults;
5437
+ if (typeof this.skipGoalsHydration !== 'undefined') {
5438
+ toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
5332
5439
  }
5333
5440
  return toReturn;
5334
5441
  }
5335
5442
  }
5336
- class CreatePromptModuleVersionRequestOptions {
5443
+ class UpsertAssistantRequestOptions {
5337
5444
  static fromProto(proto) {
5338
- let m = new CreatePromptModuleVersionRequestOptions();
5445
+ let m = new UpsertAssistantRequestOptions();
5339
5446
  m = Object.assign(m, proto);
5340
5447
  return m;
5341
5448
  }
@@ -5347,8 +5454,8 @@ class CreatePromptModuleVersionRequestOptions {
5347
5454
  }
5348
5455
  toApiJson() {
5349
5456
  const toReturn = {};
5350
- if (typeof this.shouldDeploy !== 'undefined') {
5351
- toReturn['shouldDeploy'] = this.shouldDeploy;
5457
+ if (typeof this.applyDefaults !== 'undefined') {
5458
+ toReturn['applyDefaults'] = this.applyDefaults;
5352
5459
  }
5353
5460
  return toReturn;
5354
5461
  }
@@ -5373,9 +5480,9 @@ class GetAssistantRequestOptions {
5373
5480
  return toReturn;
5374
5481
  }
5375
5482
  }
5376
- class GetMultiAssistantRequestOptions {
5483
+ class CreateAssistantRequestOptions {
5377
5484
  static fromProto(proto) {
5378
- let m = new GetMultiAssistantRequestOptions();
5485
+ let m = new CreateAssistantRequestOptions();
5379
5486
  m = Object.assign(m, proto);
5380
5487
  return m;
5381
5488
  }
@@ -5387,18 +5494,18 @@ class GetMultiAssistantRequestOptions {
5387
5494
  }
5388
5495
  toApiJson() {
5389
5496
  const toReturn = {};
5390
- if (typeof this.skipGoalsHydration !== 'undefined') {
5391
- toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
5497
+ if (typeof this.applyDefaults !== 'undefined') {
5498
+ toReturn['applyDefaults'] = this.applyDefaults;
5392
5499
  }
5393
5500
  return toReturn;
5394
5501
  }
5395
5502
  }
5396
- class GenerateChatAnswerRequestOptions {
5503
+ class ExecuteFunctionRequestOptions {
5397
5504
  static fromProto(proto) {
5398
- let m = new GenerateChatAnswerRequestOptions();
5505
+ let m = new ExecuteFunctionRequestOptions();
5399
5506
  m = Object.assign(m, proto);
5400
- if (proto.maxTokens) {
5401
- m.maxTokens = parseInt(proto.maxTokens, 10);
5507
+ if (proto.contextInfo) {
5508
+ m.contextInfo = ContextInfo.fromProto(proto.contextInfo);
5402
5509
  }
5403
5510
  return m;
5404
5511
  }
@@ -5410,25 +5517,19 @@ class GenerateChatAnswerRequestOptions {
5410
5517
  }
5411
5518
  toApiJson() {
5412
5519
  const toReturn = {};
5413
- if (typeof this.includeAllCitations !== 'undefined') {
5414
- toReturn['includeAllCitations'] = this.includeAllCitations;
5415
- }
5416
- if (typeof this.enableAsyncFunctions !== 'undefined') {
5417
- toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
5520
+ if (typeof this.skipComputeTemplateVariables !== 'undefined') {
5521
+ toReturn['skipComputeTemplateVariables'] = this.skipComputeTemplateVariables;
5418
5522
  }
5419
- if (typeof this.maxTokens !== 'undefined') {
5420
- toReturn['maxTokens'] = this.maxTokens;
5523
+ if (typeof this.contextInfo !== 'undefined' && this.contextInfo !== null) {
5524
+ toReturn['contextInfo'] = 'toApiJson' in this.contextInfo ? this.contextInfo.toApiJson() : this.contextInfo;
5421
5525
  }
5422
5526
  return toReturn;
5423
5527
  }
5424
5528
  }
5425
- class ExecuteFunctionRequestOptions {
5529
+ class CreatePromptModuleVersionRequestOptions {
5426
5530
  static fromProto(proto) {
5427
- let m = new ExecuteFunctionRequestOptions();
5531
+ let m = new CreatePromptModuleVersionRequestOptions();
5428
5532
  m = Object.assign(m, proto);
5429
- if (proto.contextInfo) {
5430
- m.contextInfo = ContextInfo.fromProto(proto.contextInfo);
5431
- }
5432
5533
  return m;
5433
5534
  }
5434
5535
  constructor(kwargs) {
@@ -5439,11 +5540,8 @@ class ExecuteFunctionRequestOptions {
5439
5540
  }
5440
5541
  toApiJson() {
5441
5542
  const toReturn = {};
5442
- if (typeof this.skipComputeTemplateVariables !== 'undefined') {
5443
- toReturn['skipComputeTemplateVariables'] = this.skipComputeTemplateVariables;
5444
- }
5445
- if (typeof this.contextInfo !== 'undefined' && this.contextInfo !== null) {
5446
- toReturn['contextInfo'] = 'toApiJson' in this.contextInfo ? this.contextInfo.toApiJson() : this.contextInfo;
5543
+ if (typeof this.shouldDeploy !== 'undefined') {
5544
+ toReturn['shouldDeploy'] = this.shouldDeploy;
5447
5545
  }
5448
5546
  return toReturn;
5449
5547
  }
@@ -5532,41 +5630,6 @@ class ListGoalsRequestSortOptions {
5532
5630
  return toReturn;
5533
5631
  }
5534
5632
  }
5535
- class ToolCall {
5536
- static fromProto(proto) {
5537
- let m = new ToolCall();
5538
- m = Object.assign(m, proto);
5539
- if (proto.namespace) {
5540
- m.namespace = Namespace.fromProto(proto.namespace);
5541
- }
5542
- return m;
5543
- }
5544
- constructor(kwargs) {
5545
- if (!kwargs) {
5546
- return;
5547
- }
5548
- Object.assign(this, kwargs);
5549
- }
5550
- toApiJson() {
5551
- const toReturn = {};
5552
- if (typeof this.toolName !== 'undefined') {
5553
- toReturn['toolName'] = this.toolName;
5554
- }
5555
- if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
5556
- toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
5557
- }
5558
- if (typeof this.arguments !== 'undefined') {
5559
- toReturn['arguments'] = this.arguments;
5560
- }
5561
- if (typeof this.response !== 'undefined') {
5562
- toReturn['response'] = this.response;
5563
- }
5564
- if (typeof this.noOp !== 'undefined') {
5565
- toReturn['noOp'] = this.noOp;
5566
- }
5567
- return toReturn;
5568
- }
5569
- }
5570
5633
  class UpdateAssistantRequest {
5571
5634
  static fromProto(proto) {
5572
5635
  let m = new UpdateAssistantRequest();
@@ -5916,15 +5979,12 @@ class ValidatePromptModulesResponse {
5916
5979
  return toReturn;
5917
5980
  }
5918
5981
  }
5919
- class ValidationResult {
5982
+ class ValidatePromptModulesResponseValidationResult {
5920
5983
  static fromProto(proto) {
5921
- let m = new ValidationResult();
5984
+ let m = new ValidatePromptModulesResponseValidationResult();
5922
5985
  m = Object.assign(m, proto);
5923
- if (proto.failureAction) {
5924
- m.failureAction = enumStringToValue(ValidationFailureAction, proto.failureAction);
5925
- }
5926
- if (proto.violations) {
5927
- m.violations = proto.violations.map(ValidationViolation.fromProto);
5986
+ if (proto.namespace) {
5987
+ m.namespace = Namespace.fromProto(proto.namespace);
5928
5988
  }
5929
5989
  return m;
5930
5990
  }
@@ -5936,11 +5996,17 @@ class ValidationResult {
5936
5996
  }
5937
5997
  toApiJson() {
5938
5998
  const toReturn = {};
5939
- if (typeof this.failureAction !== 'undefined') {
5940
- toReturn['failureAction'] = this.failureAction;
5999
+ if (typeof this.id !== 'undefined') {
6000
+ toReturn['id'] = this.id;
5941
6001
  }
5942
- if (typeof this.violations !== 'undefined' && this.violations !== null) {
5943
- toReturn['violations'] = 'toApiJson' in this.violations ? this.violations.toApiJson() : this.violations;
6002
+ if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
6003
+ toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
6004
+ }
6005
+ if (typeof this.isValid !== 'undefined') {
6006
+ toReturn['isValid'] = this.isValid;
6007
+ }
6008
+ if (typeof this.errorMessage !== 'undefined') {
6009
+ toReturn['errorMessage'] = this.errorMessage;
5944
6010
  }
5945
6011
  return toReturn;
5946
6012
  }
@@ -5977,12 +6043,15 @@ class ValidatePromptModuleVersionsResponseValidationResult {
5977
6043
  return toReturn;
5978
6044
  }
5979
6045
  }
5980
- class ValidatePromptModulesResponseValidationResult {
6046
+ class ValidationResult {
5981
6047
  static fromProto(proto) {
5982
- let m = new ValidatePromptModulesResponseValidationResult();
6048
+ let m = new ValidationResult();
5983
6049
  m = Object.assign(m, proto);
5984
- if (proto.namespace) {
5985
- m.namespace = Namespace.fromProto(proto.namespace);
6050
+ if (proto.failureAction) {
6051
+ m.failureAction = enumStringToValue(ValidationFailureAction, proto.failureAction);
6052
+ }
6053
+ if (proto.violations) {
6054
+ m.violations = proto.violations.map(ValidationViolation.fromProto);
5986
6055
  }
5987
6056
  return m;
5988
6057
  }
@@ -5994,17 +6063,11 @@ class ValidatePromptModulesResponseValidationResult {
5994
6063
  }
5995
6064
  toApiJson() {
5996
6065
  const toReturn = {};
5997
- if (typeof this.id !== 'undefined') {
5998
- toReturn['id'] = this.id;
5999
- }
6000
- if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
6001
- toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
6002
- }
6003
- if (typeof this.isValid !== 'undefined') {
6004
- toReturn['isValid'] = this.isValid;
6066
+ if (typeof this.failureAction !== 'undefined') {
6067
+ toReturn['failureAction'] = this.failureAction;
6005
6068
  }
6006
- if (typeof this.errorMessage !== 'undefined') {
6007
- toReturn['errorMessage'] = this.errorMessage;
6069
+ if (typeof this.violations !== 'undefined' && this.violations !== null) {
6070
+ toReturn['violations'] = 'toApiJson' in this.violations ? this.violations.toApiJson() : this.violations;
6008
6071
  }
6009
6072
  return toReturn;
6010
6073
  }
@@ -6545,5 +6608,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
6545
6608
  * Generated bundle index. Do not edit.
6546
6609
  */
6547
6610
 
6548
- export { Access, Action, AgentArchitecture, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatContent, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, Constraint, ConstraintFilter, ContextInfo, CreateAssistantRequest, CreateAssistantRequestOptions, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreateMCPFromIntegrationRequest, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, Effect, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionRequestOptions, ExecuteFunctionResponse, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyConnectedIntegrationAuthStrategy, FunctionAuthStrategyImpersonationAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantRequestOptions, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantRequestOptions, GetMultiAssistantResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetTestRunRequest, GetTestRunResponse, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, HostService, ImageContent, IntegrationTestApiService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsRequestFilters, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsRequestSortOptions, ListGoalsRequestSortingOrder, ListGoalsResponse, ListMCPToolsRequest, ListMCPToolsResponse, ListMCPsRequest, ListMCPsRequestFilters, ListMCPsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListTemplateVariablesRequest, ListTemplateVariablesResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, MCP, MCPOptions, Model, ModelConfig, ModelType, ModelVendor, Namespace, NamespaceAccountGroupNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, NamespaceType, OpenAIConfig, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, RunTestsRequest, RunTestsResponse, Scope, SerializeFunctionRequest, SerializeFunctionResponse, SerializeGoalRequest, SerializeGoalResponse, SerializeMCPRequest, SerializeMCPResponse, SerializePromptModuleRequest, SerializePromptModuleResponse, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SetConnectionAssistantRequest, SortDirection, SortOptions, StreamingGenerateChatAnswerResponseContentType, TemplateVariable, TestCase, TestLLMOptions, TestResult, TestResultCitation, TestRun, ToolCall, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidateFunctionsRequest, ValidateFunctionsResponse, ValidateFunctionsResponseValidationResult, ValidateGoalsRequest, ValidateGoalsResponse, ValidateGoalsResponseValidationResult, ValidateMCPsRequest, ValidateMCPsResponse, ValidateMCPsResponseValidationResult, ValidatePromptModuleRequest, ValidatePromptModuleResponse, ValidatePromptModuleVersionsRequest, ValidatePromptModuleVersionsResponse, ValidatePromptModuleVersionsResponseValidationResult, ValidatePromptModulesRequest, ValidatePromptModulesResponse, ValidatePromptModulesResponseValidationResult, ValidationFailureAction, ValidationResult, ValidationViolation, Validator, VendorModel };
6611
+ export { Access, Action, AgentArchitecture, AgentRole, Assistant, AssistantApiService, AssistantKey, AssistantType, BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CancelTestRunRequest, ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatContent, ChatMessage, ChatMessageRole, ChatUserInfo, Config, ConfigInboxConfig, ConfigVoiceConfig, ConfigurableGoal, Connection, ConnectionApiService, ConnectionKey, Constraint, ConstraintFilter, ContextInfo, CreateAssistantRequest, CreateAssistantRequestOptions, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreateMCPFromIntegrationRequest, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptModuleVersionRequestOptions, DeepgramConfig, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeleteMCPRequest, DeletePromptModuleRequest, DeleteTestCasesRequest, DeployPromptModuleRequest, Effect, ElevenLabsConfig, ExecuteFunctionRequest, ExecuteFunctionRequestOptions, ExecuteFunctionResponse, ExpectedToolCall, FieldMask, Function, FunctionApiService, FunctionAuthStrategy, FunctionAuthStrategyConnectedIntegrationAuthStrategy, FunctionAuthStrategyImpersonationAuthStrategy, FunctionAuthStrategyPlatformManagedFunctionAuthStrategy, FunctionAuthStrategyUnspecifiedFunctionAuthStrategy, FunctionHeader, FunctionKey, FunctionParameter, FunctionParameterParameterLocation, GenerateChatAnswerRequest, GenerateChatAnswerRequestOptions, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantRequestOptions, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantRequestOptions, GetMultiAssistantResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetTestRunRequest, GetTestRunResponse, Goal, GoalApiService, GoalChannel, GoalKey, GoalType, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, HostService, ImageContent, IntegrationTestApiService, KeyValuePair, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantRequestFilters, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsRequestFilters, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsRequestFilters, ListConnectionsResponse, ListFunctionRequest, ListFunctionRequestFilters, ListFunctionResponse, ListGoalsRequest, ListGoalsRequestFilters, ListGoalsRequestSortOptions, ListGoalsRequestSortingOrder, ListGoalsResponse, ListMCPToolsRequest, ListMCPToolsResponse, ListMCPsRequest, ListMCPsRequestFilters, ListMCPsResponse, ListPromptModuleRequest, ListPromptModuleRequestFilters, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListTemplateVariablesRequest, ListTemplateVariablesResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, MCP, MCPOptions, Model, ModelConfig, ModelType, ModelVendor, Namespace, NamespaceAccountGroupNamespace, NamespaceGlobalNamespace, NamespacePartnerNamespace, NamespaceSystemNamespace, NamespaceType, OpenAIConfig, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, PagedRequestOptions, PagedResponseMetadata, PromptModule, PromptModuleApiService, PromptModuleKey, PromptModuleVersion, RunTestsRequest, RunTestsResponse, Scope, SerializeFunctionRequest, SerializeFunctionResponse, SerializeGoalRequest, SerializeGoalResponse, SerializeMCPRequest, SerializeMCPResponse, SerializePromptModuleRequest, SerializePromptModuleResponse, SetAssistantConnectionsRequest, SetAssistantConnectionsRequestConnectionState, SetConnectionAssistantRequest, SortDirection, SortOptions, StreamingGenerateChatAnswerResponseContentType, TemplateVariable, TestCase, TestLLMOptions, TestResult, TestResultCitation, TestRun, ToolCall, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpsertAssistantRequest, UpsertAssistantRequestOptions, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, UpsertMCPRequest, UpsertTestCasesRequest, ValidateFunctionsRequest, ValidateFunctionsResponse, ValidateFunctionsResponseValidationResult, ValidateGoalsRequest, ValidateGoalsResponse, ValidateGoalsResponseValidationResult, ValidateMCPsRequest, ValidateMCPsResponse, ValidateMCPsResponseValidationResult, ValidatePromptModuleRequest, ValidatePromptModuleResponse, ValidatePromptModuleVersionsRequest, ValidatePromptModuleVersionsResponse, ValidatePromptModuleVersionsResponseValidationResult, ValidatePromptModulesRequest, ValidatePromptModulesResponse, ValidatePromptModulesResponseValidationResult, ValidationFailureAction, ValidationResult, ValidationViolation, Validator, VendorModel };
6549
6612
  //# sourceMappingURL=vendasta-ai-assistants.mjs.map