@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.
- package/esm2020/lib/_internal/enums/agent-role.enum.mjs +13 -0
- package/esm2020/lib/_internal/enums/index.mjs +2 -1
- package/esm2020/lib/_internal/interfaces/answer.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/goal.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/integration-tests.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/answer.mjs +37 -1
- package/esm2020/lib/_internal/objects/api.mjs +148 -183
- package/esm2020/lib/_internal/objects/goal.mjs +7 -1
- package/esm2020/lib/_internal/objects/index.mjs +4 -4
- package/esm2020/lib/_internal/objects/integration-tests.mjs +46 -2
- package/fesm2015/vendasta-ai-assistants.mjs +245 -182
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +245 -182
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/agent-role.enum.d.ts +5 -0
- package/lib/_internal/enums/index.d.ts +1 -0
- package/lib/_internal/interfaces/answer.interface.d.ts +8 -0
- package/lib/_internal/interfaces/api.interface.d.ts +33 -40
- package/lib/_internal/interfaces/goal.interface.d.ts +1 -0
- package/lib/_internal/interfaces/index.d.ts +3 -3
- package/lib/_internal/interfaces/integration-tests.interface.d.ts +9 -1
- package/lib/_internal/objects/answer.d.ts +11 -0
- package/lib/_internal/objects/api.d.ts +60 -70
- package/lib/_internal/objects/goal.d.ts +1 -0
- package/lib/_internal/objects/index.d.ts +3 -3
- package/lib/_internal/objects/integration-tests.d.ts +12 -1
- package/package.json +1 -1
|
@@ -92,6 +92,19 @@ var FunctionParameterParameterLocation;
|
|
|
92
92
|
FunctionParameterParameterLocation[FunctionParameterParameterLocation["LOCATION_QUERY_PARAM"] = 1] = "LOCATION_QUERY_PARAM";
|
|
93
93
|
})(FunctionParameterParameterLocation || (FunctionParameterParameterLocation = {}));
|
|
94
94
|
|
|
95
|
+
// *********************************
|
|
96
|
+
// Code generated by sdkgen
|
|
97
|
+
// DO NOT EDIT!.
|
|
98
|
+
//
|
|
99
|
+
// Enums.
|
|
100
|
+
// *********************************
|
|
101
|
+
var AgentRole;
|
|
102
|
+
(function (AgentRole) {
|
|
103
|
+
AgentRole[AgentRole["AGENT_ROLE_UNSPECIFIED"] = 0] = "AGENT_ROLE_UNSPECIFIED";
|
|
104
|
+
AgentRole[AgentRole["AGENT_ROLE_SUBAGENT"] = 1] = "AGENT_ROLE_SUBAGENT";
|
|
105
|
+
AgentRole[AgentRole["AGENT_ROLE_SUPERVISOR"] = 2] = "AGENT_ROLE_SUPERVISOR";
|
|
106
|
+
})(AgentRole || (AgentRole = {}));
|
|
107
|
+
|
|
95
108
|
// *********************************
|
|
96
109
|
// Code generated by sdkgen
|
|
97
110
|
// DO NOT EDIT!.
|
|
@@ -1613,6 +1626,9 @@ class Goal {
|
|
|
1613
1626
|
if (proto.constraints) {
|
|
1614
1627
|
m.constraints = proto.constraints.map(Constraint.fromProto);
|
|
1615
1628
|
}
|
|
1629
|
+
if (proto.agentRole) {
|
|
1630
|
+
m.agentRole = enumStringToValue$9(AgentRole, proto.agentRole);
|
|
1631
|
+
}
|
|
1616
1632
|
return m;
|
|
1617
1633
|
}
|
|
1618
1634
|
constructor(kwargs) {
|
|
@@ -1665,6 +1681,9 @@ class Goal {
|
|
|
1665
1681
|
if (typeof this.sourcePath !== 'undefined') {
|
|
1666
1682
|
toReturn['sourcePath'] = this.sourcePath;
|
|
1667
1683
|
}
|
|
1684
|
+
if (typeof this.agentRole !== 'undefined') {
|
|
1685
|
+
toReturn['agentRole'] = this.agentRole;
|
|
1686
|
+
}
|
|
1668
1687
|
return toReturn;
|
|
1669
1688
|
}
|
|
1670
1689
|
}
|
|
@@ -2635,6 +2654,41 @@ class ImageContent {
|
|
|
2635
2654
|
return toReturn;
|
|
2636
2655
|
}
|
|
2637
2656
|
}
|
|
2657
|
+
class ToolCall {
|
|
2658
|
+
static fromProto(proto) {
|
|
2659
|
+
let m = new ToolCall();
|
|
2660
|
+
m = Object.assign(m, proto);
|
|
2661
|
+
if (proto.namespace) {
|
|
2662
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
2663
|
+
}
|
|
2664
|
+
return m;
|
|
2665
|
+
}
|
|
2666
|
+
constructor(kwargs) {
|
|
2667
|
+
if (!kwargs) {
|
|
2668
|
+
return;
|
|
2669
|
+
}
|
|
2670
|
+
Object.assign(this, kwargs);
|
|
2671
|
+
}
|
|
2672
|
+
toApiJson() {
|
|
2673
|
+
const toReturn = {};
|
|
2674
|
+
if (typeof this.toolName !== 'undefined') {
|
|
2675
|
+
toReturn['toolName'] = this.toolName;
|
|
2676
|
+
}
|
|
2677
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
2678
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
2679
|
+
}
|
|
2680
|
+
if (typeof this.arguments !== 'undefined') {
|
|
2681
|
+
toReturn['arguments'] = this.arguments;
|
|
2682
|
+
}
|
|
2683
|
+
if (typeof this.response !== 'undefined') {
|
|
2684
|
+
toReturn['response'] = this.response;
|
|
2685
|
+
}
|
|
2686
|
+
if (typeof this.noOp !== 'undefined') {
|
|
2687
|
+
toReturn['noOp'] = this.noOp;
|
|
2688
|
+
}
|
|
2689
|
+
return toReturn;
|
|
2690
|
+
}
|
|
2691
|
+
}
|
|
2638
2692
|
|
|
2639
2693
|
function enumStringToValue$3(enumRef, value) {
|
|
2640
2694
|
if (typeof value === 'number') {
|
|
@@ -2735,6 +2789,32 @@ class DeleteTestCasesRequest {
|
|
|
2735
2789
|
return toReturn;
|
|
2736
2790
|
}
|
|
2737
2791
|
}
|
|
2792
|
+
class ExpectedToolCall {
|
|
2793
|
+
static fromProto(proto) {
|
|
2794
|
+
let m = new ExpectedToolCall();
|
|
2795
|
+
m = Object.assign(m, proto);
|
|
2796
|
+
return m;
|
|
2797
|
+
}
|
|
2798
|
+
constructor(kwargs) {
|
|
2799
|
+
if (!kwargs) {
|
|
2800
|
+
return;
|
|
2801
|
+
}
|
|
2802
|
+
Object.assign(this, kwargs);
|
|
2803
|
+
}
|
|
2804
|
+
toApiJson() {
|
|
2805
|
+
const toReturn = {};
|
|
2806
|
+
if (typeof this.name !== 'undefined') {
|
|
2807
|
+
toReturn['name'] = this.name;
|
|
2808
|
+
}
|
|
2809
|
+
if (typeof this.arguments !== 'undefined') {
|
|
2810
|
+
toReturn['arguments'] = this.arguments;
|
|
2811
|
+
}
|
|
2812
|
+
if (typeof this.response !== 'undefined') {
|
|
2813
|
+
toReturn['response'] = this.response;
|
|
2814
|
+
}
|
|
2815
|
+
return toReturn;
|
|
2816
|
+
}
|
|
2817
|
+
}
|
|
2738
2818
|
class GetTestRunRequest {
|
|
2739
2819
|
static fromProto(proto) {
|
|
2740
2820
|
let m = new GetTestRunRequest();
|
|
@@ -2994,6 +3074,9 @@ class TestCase {
|
|
|
2994
3074
|
if (proto.chatHistory) {
|
|
2995
3075
|
m.chatHistory = proto.chatHistory.map(ChatMessage.fromProto);
|
|
2996
3076
|
}
|
|
3077
|
+
if (proto.expectedToolCalls) {
|
|
3078
|
+
m.expectedToolCalls = proto.expectedToolCalls.map(ExpectedToolCall.fromProto);
|
|
3079
|
+
}
|
|
2997
3080
|
return m;
|
|
2998
3081
|
}
|
|
2999
3082
|
constructor(kwargs) {
|
|
@@ -3016,6 +3099,9 @@ class TestCase {
|
|
|
3016
3099
|
if (typeof this.expectation !== 'undefined') {
|
|
3017
3100
|
toReturn['expectation'] = this.expectation;
|
|
3018
3101
|
}
|
|
3102
|
+
if (typeof this.expectedToolCalls !== 'undefined' && this.expectedToolCalls !== null) {
|
|
3103
|
+
toReturn['expectedToolCalls'] = 'toApiJson' in this.expectedToolCalls ? this.expectedToolCalls.toApiJson() : this.expectedToolCalls;
|
|
3104
|
+
}
|
|
3019
3105
|
return toReturn;
|
|
3020
3106
|
}
|
|
3021
3107
|
}
|
|
@@ -3055,6 +3141,12 @@ class TestResult {
|
|
|
3055
3141
|
if (proto.llmOptions) {
|
|
3056
3142
|
m.llmOptions = TestLLMOptions.fromProto(proto.llmOptions);
|
|
3057
3143
|
}
|
|
3144
|
+
if (proto.expectedToolCalls) {
|
|
3145
|
+
m.expectedToolCalls = proto.expectedToolCalls.map(ExpectedToolCall.fromProto);
|
|
3146
|
+
}
|
|
3147
|
+
if (proto.toolCalls) {
|
|
3148
|
+
m.toolCalls = proto.toolCalls.map(ToolCall.fromProto);
|
|
3149
|
+
}
|
|
3058
3150
|
return m;
|
|
3059
3151
|
}
|
|
3060
3152
|
constructor(kwargs) {
|
|
@@ -3098,6 +3190,12 @@ class TestResult {
|
|
|
3098
3190
|
if (typeof this.latency !== 'undefined') {
|
|
3099
3191
|
toReturn['latency'] = this.latency;
|
|
3100
3192
|
}
|
|
3193
|
+
if (typeof this.expectedToolCalls !== 'undefined' && this.expectedToolCalls !== null) {
|
|
3194
|
+
toReturn['expectedToolCalls'] = 'toApiJson' in this.expectedToolCalls ? this.expectedToolCalls.toApiJson() : this.expectedToolCalls;
|
|
3195
|
+
}
|
|
3196
|
+
if (typeof this.toolCalls !== 'undefined' && this.toolCalls !== null) {
|
|
3197
|
+
toReturn['toolCalls'] = 'toApiJson' in this.toolCalls ? this.toolCalls.toApiJson() : this.toolCalls;
|
|
3198
|
+
}
|
|
3101
3199
|
return toReturn;
|
|
3102
3200
|
}
|
|
3103
3201
|
}
|
|
@@ -3756,15 +3854,27 @@ class ExecuteFunctionResponse {
|
|
|
3756
3854
|
return toReturn;
|
|
3757
3855
|
}
|
|
3758
3856
|
}
|
|
3759
|
-
class
|
|
3857
|
+
class ListGoalsRequestFilters {
|
|
3760
3858
|
static fromProto(proto) {
|
|
3761
|
-
let m = new
|
|
3859
|
+
let m = new ListGoalsRequestFilters();
|
|
3762
3860
|
m = Object.assign(m, proto);
|
|
3763
3861
|
if (proto.namespace) {
|
|
3764
3862
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3765
3863
|
}
|
|
3766
3864
|
if (proto.type) {
|
|
3767
|
-
m.type = enumStringToValue(
|
|
3865
|
+
m.type = enumStringToValue(GoalType, proto.type);
|
|
3866
|
+
}
|
|
3867
|
+
if (proto.supportedChannels) {
|
|
3868
|
+
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
3869
|
+
}
|
|
3870
|
+
if (proto.namespaces) {
|
|
3871
|
+
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3872
|
+
}
|
|
3873
|
+
if (proto.constraintFilters) {
|
|
3874
|
+
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3875
|
+
}
|
|
3876
|
+
if (proto.sortOptions) {
|
|
3877
|
+
m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
|
|
3768
3878
|
}
|
|
3769
3879
|
return m;
|
|
3770
3880
|
}
|
|
@@ -3782,18 +3892,36 @@ class ListAssistantRequestFilters {
|
|
|
3782
3892
|
if (typeof this.type !== 'undefined') {
|
|
3783
3893
|
toReturn['type'] = this.type;
|
|
3784
3894
|
}
|
|
3895
|
+
if (typeof this.supportedChannels !== 'undefined') {
|
|
3896
|
+
toReturn['supportedChannels'] = this.supportedChannels;
|
|
3897
|
+
}
|
|
3898
|
+
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3899
|
+
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3900
|
+
}
|
|
3901
|
+
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3902
|
+
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3903
|
+
}
|
|
3904
|
+
if (typeof this.searchTerm !== 'undefined') {
|
|
3905
|
+
toReturn['searchTerm'] = this.searchTerm;
|
|
3906
|
+
}
|
|
3907
|
+
if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
|
|
3908
|
+
toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
|
|
3909
|
+
}
|
|
3910
|
+
if (typeof this.omitOverrides !== 'undefined') {
|
|
3911
|
+
toReturn['omitOverrides'] = this.omitOverrides;
|
|
3912
|
+
}
|
|
3785
3913
|
return toReturn;
|
|
3786
3914
|
}
|
|
3787
3915
|
}
|
|
3788
|
-
class
|
|
3916
|
+
class ListAssistantRequestFilters {
|
|
3789
3917
|
static fromProto(proto) {
|
|
3790
|
-
let m = new
|
|
3918
|
+
let m = new ListAssistantRequestFilters();
|
|
3791
3919
|
m = Object.assign(m, proto);
|
|
3792
|
-
if (proto.
|
|
3793
|
-
m.
|
|
3920
|
+
if (proto.namespace) {
|
|
3921
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3794
3922
|
}
|
|
3795
3923
|
if (proto.type) {
|
|
3796
|
-
m.type =
|
|
3924
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3797
3925
|
}
|
|
3798
3926
|
return m;
|
|
3799
3927
|
}
|
|
@@ -3805,8 +3933,8 @@ class ListAvailableModelsRequestFilters {
|
|
|
3805
3933
|
}
|
|
3806
3934
|
toApiJson() {
|
|
3807
3935
|
const toReturn = {};
|
|
3808
|
-
if (typeof this.
|
|
3809
|
-
toReturn['
|
|
3936
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3937
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3810
3938
|
}
|
|
3811
3939
|
if (typeof this.type !== 'undefined') {
|
|
3812
3940
|
toReturn['type'] = this.type;
|
|
@@ -3814,13 +3942,19 @@ class ListAvailableModelsRequestFilters {
|
|
|
3814
3942
|
return toReturn;
|
|
3815
3943
|
}
|
|
3816
3944
|
}
|
|
3817
|
-
class
|
|
3945
|
+
class ListFunctionRequestFilters {
|
|
3818
3946
|
static fromProto(proto) {
|
|
3819
|
-
let m = new
|
|
3947
|
+
let m = new ListFunctionRequestFilters();
|
|
3820
3948
|
m = Object.assign(m, proto);
|
|
3821
3949
|
if (proto.namespace) {
|
|
3822
3950
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3823
3951
|
}
|
|
3952
|
+
if (proto.namespaces) {
|
|
3953
|
+
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3954
|
+
}
|
|
3955
|
+
if (proto.constraintFilters) {
|
|
3956
|
+
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3957
|
+
}
|
|
3824
3958
|
return m;
|
|
3825
3959
|
}
|
|
3826
3960
|
constructor(kwargs) {
|
|
@@ -3834,30 +3968,27 @@ class ListPromptModuleRequestFilters {
|
|
|
3834
3968
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3835
3969
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3836
3970
|
}
|
|
3971
|
+
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3972
|
+
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3973
|
+
}
|
|
3974
|
+
if (typeof this.mcpId !== 'undefined') {
|
|
3975
|
+
toReturn['mcpId'] = this.mcpId;
|
|
3976
|
+
}
|
|
3977
|
+
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3978
|
+
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3979
|
+
}
|
|
3837
3980
|
return toReturn;
|
|
3838
3981
|
}
|
|
3839
3982
|
}
|
|
3840
|
-
class
|
|
3983
|
+
class ListAvailableModelsRequestFilters {
|
|
3841
3984
|
static fromProto(proto) {
|
|
3842
|
-
let m = new
|
|
3985
|
+
let m = new ListAvailableModelsRequestFilters();
|
|
3843
3986
|
m = Object.assign(m, proto);
|
|
3844
|
-
if (proto.
|
|
3845
|
-
m.
|
|
3987
|
+
if (proto.vendor) {
|
|
3988
|
+
m.vendor = proto.vendor.map((v) => enumStringToValue(ModelVendor, v));
|
|
3846
3989
|
}
|
|
3847
3990
|
if (proto.type) {
|
|
3848
|
-
m.type = enumStringToValue(
|
|
3849
|
-
}
|
|
3850
|
-
if (proto.supportedChannels) {
|
|
3851
|
-
m.supportedChannels = proto.supportedChannels.map((v) => enumStringToValue(GoalChannel, v));
|
|
3852
|
-
}
|
|
3853
|
-
if (proto.namespaces) {
|
|
3854
|
-
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3855
|
-
}
|
|
3856
|
-
if (proto.constraintFilters) {
|
|
3857
|
-
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
3858
|
-
}
|
|
3859
|
-
if (proto.sortOptions) {
|
|
3860
|
-
m.sortOptions = proto.sortOptions.map(ListGoalsRequestSortOptions.fromProto);
|
|
3991
|
+
m.type = proto.type.map((v) => enumStringToValue(ModelType, v));
|
|
3861
3992
|
}
|
|
3862
3993
|
return m;
|
|
3863
3994
|
}
|
|
@@ -3869,45 +4000,21 @@ class ListGoalsRequestFilters {
|
|
|
3869
4000
|
}
|
|
3870
4001
|
toApiJson() {
|
|
3871
4002
|
const toReturn = {};
|
|
3872
|
-
if (typeof this.
|
|
3873
|
-
toReturn['
|
|
4003
|
+
if (typeof this.vendor !== 'undefined') {
|
|
4004
|
+
toReturn['vendor'] = this.vendor;
|
|
3874
4005
|
}
|
|
3875
4006
|
if (typeof this.type !== 'undefined') {
|
|
3876
4007
|
toReturn['type'] = this.type;
|
|
3877
4008
|
}
|
|
3878
|
-
if (typeof this.supportedChannels !== 'undefined') {
|
|
3879
|
-
toReturn['supportedChannels'] = this.supportedChannels;
|
|
3880
|
-
}
|
|
3881
|
-
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3882
|
-
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3883
|
-
}
|
|
3884
|
-
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3885
|
-
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
3886
|
-
}
|
|
3887
|
-
if (typeof this.searchTerm !== 'undefined') {
|
|
3888
|
-
toReturn['searchTerm'] = this.searchTerm;
|
|
3889
|
-
}
|
|
3890
|
-
if (typeof this.sortOptions !== 'undefined' && this.sortOptions !== null) {
|
|
3891
|
-
toReturn['sortOptions'] = 'toApiJson' in this.sortOptions ? this.sortOptions.toApiJson() : this.sortOptions;
|
|
3892
|
-
}
|
|
3893
|
-
if (typeof this.omitOverrides !== 'undefined') {
|
|
3894
|
-
toReturn['omitOverrides'] = this.omitOverrides;
|
|
3895
|
-
}
|
|
3896
4009
|
return toReturn;
|
|
3897
4010
|
}
|
|
3898
4011
|
}
|
|
3899
|
-
class
|
|
4012
|
+
class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
3900
4013
|
static fromProto(proto) {
|
|
3901
|
-
let m = new
|
|
4014
|
+
let m = new ListAllAssistantsAssociatedToConnectionRequestFilters();
|
|
3902
4015
|
m = Object.assign(m, proto);
|
|
3903
|
-
if (proto.
|
|
3904
|
-
m.
|
|
3905
|
-
}
|
|
3906
|
-
if (proto.namespaces) {
|
|
3907
|
-
m.namespaces = proto.namespaces.map(Namespace.fromProto);
|
|
3908
|
-
}
|
|
3909
|
-
if (proto.constraintFilters) {
|
|
3910
|
-
m.constraintFilters = proto.constraintFilters.map(ConstraintFilter.fromProto);
|
|
4016
|
+
if (proto.type) {
|
|
4017
|
+
m.type = enumStringToValue(AssistantType, proto.type);
|
|
3911
4018
|
}
|
|
3912
4019
|
return m;
|
|
3913
4020
|
}
|
|
@@ -3919,31 +4026,19 @@ class ListFunctionRequestFilters {
|
|
|
3919
4026
|
}
|
|
3920
4027
|
toApiJson() {
|
|
3921
4028
|
const toReturn = {};
|
|
3922
|
-
if (typeof this.
|
|
3923
|
-
toReturn['
|
|
3924
|
-
}
|
|
3925
|
-
if (typeof this.namespaces !== 'undefined' && this.namespaces !== null) {
|
|
3926
|
-
toReturn['namespaces'] = 'toApiJson' in this.namespaces ? this.namespaces.toApiJson() : this.namespaces;
|
|
3927
|
-
}
|
|
3928
|
-
if (typeof this.mcpId !== 'undefined') {
|
|
3929
|
-
toReturn['mcpId'] = this.mcpId;
|
|
3930
|
-
}
|
|
3931
|
-
if (typeof this.constraintFilters !== 'undefined' && this.constraintFilters !== null) {
|
|
3932
|
-
toReturn['constraintFilters'] = 'toApiJson' in this.constraintFilters ? this.constraintFilters.toApiJson() : this.constraintFilters;
|
|
4029
|
+
if (typeof this.type !== 'undefined') {
|
|
4030
|
+
toReturn['type'] = this.type;
|
|
3933
4031
|
}
|
|
3934
4032
|
return toReturn;
|
|
3935
4033
|
}
|
|
3936
4034
|
}
|
|
3937
|
-
class
|
|
4035
|
+
class ListPromptModuleRequestFilters {
|
|
3938
4036
|
static fromProto(proto) {
|
|
3939
|
-
let m = new
|
|
4037
|
+
let m = new ListPromptModuleRequestFilters();
|
|
3940
4038
|
m = Object.assign(m, proto);
|
|
3941
4039
|
if (proto.namespace) {
|
|
3942
4040
|
m.namespace = Namespace.fromProto(proto.namespace);
|
|
3943
4041
|
}
|
|
3944
|
-
if (proto.assistantType) {
|
|
3945
|
-
m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
|
|
3946
|
-
}
|
|
3947
4042
|
return m;
|
|
3948
4043
|
}
|
|
3949
4044
|
constructor(kwargs) {
|
|
@@ -3957,18 +4052,18 @@ class ListConnectionsRequestFilters {
|
|
|
3957
4052
|
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
3958
4053
|
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
3959
4054
|
}
|
|
3960
|
-
if (typeof this.assistantType !== 'undefined') {
|
|
3961
|
-
toReturn['assistantType'] = this.assistantType;
|
|
3962
|
-
}
|
|
3963
4055
|
return toReturn;
|
|
3964
4056
|
}
|
|
3965
4057
|
}
|
|
3966
|
-
class
|
|
4058
|
+
class ListConnectionsRequestFilters {
|
|
3967
4059
|
static fromProto(proto) {
|
|
3968
|
-
let m = new
|
|
4060
|
+
let m = new ListConnectionsRequestFilters();
|
|
3969
4061
|
m = Object.assign(m, proto);
|
|
3970
|
-
if (proto.
|
|
3971
|
-
m.
|
|
4062
|
+
if (proto.namespace) {
|
|
4063
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
4064
|
+
}
|
|
4065
|
+
if (proto.assistantType) {
|
|
4066
|
+
m.assistantType = enumStringToValue(AssistantType, proto.assistantType);
|
|
3972
4067
|
}
|
|
3973
4068
|
return m;
|
|
3974
4069
|
}
|
|
@@ -3980,8 +4075,11 @@ class ListAllAssistantsAssociatedToConnectionRequestFilters {
|
|
|
3980
4075
|
}
|
|
3981
4076
|
toApiJson() {
|
|
3982
4077
|
const toReturn = {};
|
|
3983
|
-
if (typeof this.
|
|
3984
|
-
toReturn['
|
|
4078
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
4079
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
4080
|
+
}
|
|
4081
|
+
if (typeof this.assistantType !== 'undefined') {
|
|
4082
|
+
toReturn['assistantType'] = this.assistantType;
|
|
3985
4083
|
}
|
|
3986
4084
|
return toReturn;
|
|
3987
4085
|
}
|
|
@@ -5294,10 +5392,13 @@ class ListTemplateVariablesResponse {
|
|
|
5294
5392
|
return toReturn;
|
|
5295
5393
|
}
|
|
5296
5394
|
}
|
|
5297
|
-
class
|
|
5395
|
+
class GenerateChatAnswerRequestOptions {
|
|
5298
5396
|
static fromProto(proto) {
|
|
5299
|
-
let m = new
|
|
5397
|
+
let m = new GenerateChatAnswerRequestOptions();
|
|
5300
5398
|
m = Object.assign(m, proto);
|
|
5399
|
+
if (proto.maxTokens) {
|
|
5400
|
+
m.maxTokens = parseInt(proto.maxTokens, 10);
|
|
5401
|
+
}
|
|
5301
5402
|
return m;
|
|
5302
5403
|
}
|
|
5303
5404
|
constructor(kwargs) {
|
|
@@ -5308,15 +5409,21 @@ class CreateAssistantRequestOptions {
|
|
|
5308
5409
|
}
|
|
5309
5410
|
toApiJson() {
|
|
5310
5411
|
const toReturn = {};
|
|
5311
|
-
if (typeof this.
|
|
5312
|
-
toReturn['
|
|
5412
|
+
if (typeof this.includeAllCitations !== 'undefined') {
|
|
5413
|
+
toReturn['includeAllCitations'] = this.includeAllCitations;
|
|
5414
|
+
}
|
|
5415
|
+
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
5416
|
+
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
5417
|
+
}
|
|
5418
|
+
if (typeof this.maxTokens !== 'undefined') {
|
|
5419
|
+
toReturn['maxTokens'] = this.maxTokens;
|
|
5313
5420
|
}
|
|
5314
5421
|
return toReturn;
|
|
5315
5422
|
}
|
|
5316
5423
|
}
|
|
5317
|
-
class
|
|
5424
|
+
class GetMultiAssistantRequestOptions {
|
|
5318
5425
|
static fromProto(proto) {
|
|
5319
|
-
let m = new
|
|
5426
|
+
let m = new GetMultiAssistantRequestOptions();
|
|
5320
5427
|
m = Object.assign(m, proto);
|
|
5321
5428
|
return m;
|
|
5322
5429
|
}
|
|
@@ -5328,15 +5435,15 @@ class UpsertAssistantRequestOptions {
|
|
|
5328
5435
|
}
|
|
5329
5436
|
toApiJson() {
|
|
5330
5437
|
const toReturn = {};
|
|
5331
|
-
if (typeof this.
|
|
5332
|
-
toReturn['
|
|
5438
|
+
if (typeof this.skipGoalsHydration !== 'undefined') {
|
|
5439
|
+
toReturn['skipGoalsHydration'] = this.skipGoalsHydration;
|
|
5333
5440
|
}
|
|
5334
5441
|
return toReturn;
|
|
5335
5442
|
}
|
|
5336
5443
|
}
|
|
5337
|
-
class
|
|
5444
|
+
class UpsertAssistantRequestOptions {
|
|
5338
5445
|
static fromProto(proto) {
|
|
5339
|
-
let m = new
|
|
5446
|
+
let m = new UpsertAssistantRequestOptions();
|
|
5340
5447
|
m = Object.assign(m, proto);
|
|
5341
5448
|
return m;
|
|
5342
5449
|
}
|
|
@@ -5348,8 +5455,8 @@ class CreatePromptModuleVersionRequestOptions {
|
|
|
5348
5455
|
}
|
|
5349
5456
|
toApiJson() {
|
|
5350
5457
|
const toReturn = {};
|
|
5351
|
-
if (typeof this.
|
|
5352
|
-
toReturn['
|
|
5458
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
5459
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
5353
5460
|
}
|
|
5354
5461
|
return toReturn;
|
|
5355
5462
|
}
|
|
@@ -5374,9 +5481,9 @@ class GetAssistantRequestOptions {
|
|
|
5374
5481
|
return toReturn;
|
|
5375
5482
|
}
|
|
5376
5483
|
}
|
|
5377
|
-
class
|
|
5484
|
+
class CreateAssistantRequestOptions {
|
|
5378
5485
|
static fromProto(proto) {
|
|
5379
|
-
let m = new
|
|
5486
|
+
let m = new CreateAssistantRequestOptions();
|
|
5380
5487
|
m = Object.assign(m, proto);
|
|
5381
5488
|
return m;
|
|
5382
5489
|
}
|
|
@@ -5388,18 +5495,18 @@ class GetMultiAssistantRequestOptions {
|
|
|
5388
5495
|
}
|
|
5389
5496
|
toApiJson() {
|
|
5390
5497
|
const toReturn = {};
|
|
5391
|
-
if (typeof this.
|
|
5392
|
-
toReturn['
|
|
5498
|
+
if (typeof this.applyDefaults !== 'undefined') {
|
|
5499
|
+
toReturn['applyDefaults'] = this.applyDefaults;
|
|
5393
5500
|
}
|
|
5394
5501
|
return toReturn;
|
|
5395
5502
|
}
|
|
5396
5503
|
}
|
|
5397
|
-
class
|
|
5504
|
+
class ExecuteFunctionRequestOptions {
|
|
5398
5505
|
static fromProto(proto) {
|
|
5399
|
-
let m = new
|
|
5506
|
+
let m = new ExecuteFunctionRequestOptions();
|
|
5400
5507
|
m = Object.assign(m, proto);
|
|
5401
|
-
if (proto.
|
|
5402
|
-
m.
|
|
5508
|
+
if (proto.contextInfo) {
|
|
5509
|
+
m.contextInfo = ContextInfo.fromProto(proto.contextInfo);
|
|
5403
5510
|
}
|
|
5404
5511
|
return m;
|
|
5405
5512
|
}
|
|
@@ -5411,25 +5518,19 @@ class GenerateChatAnswerRequestOptions {
|
|
|
5411
5518
|
}
|
|
5412
5519
|
toApiJson() {
|
|
5413
5520
|
const toReturn = {};
|
|
5414
|
-
if (typeof this.
|
|
5415
|
-
toReturn['
|
|
5416
|
-
}
|
|
5417
|
-
if (typeof this.enableAsyncFunctions !== 'undefined') {
|
|
5418
|
-
toReturn['enableAsyncFunctions'] = this.enableAsyncFunctions;
|
|
5521
|
+
if (typeof this.skipComputeTemplateVariables !== 'undefined') {
|
|
5522
|
+
toReturn['skipComputeTemplateVariables'] = this.skipComputeTemplateVariables;
|
|
5419
5523
|
}
|
|
5420
|
-
if (typeof this.
|
|
5421
|
-
toReturn['
|
|
5524
|
+
if (typeof this.contextInfo !== 'undefined' && this.contextInfo !== null) {
|
|
5525
|
+
toReturn['contextInfo'] = 'toApiJson' in this.contextInfo ? this.contextInfo.toApiJson() : this.contextInfo;
|
|
5422
5526
|
}
|
|
5423
5527
|
return toReturn;
|
|
5424
5528
|
}
|
|
5425
5529
|
}
|
|
5426
|
-
class
|
|
5530
|
+
class CreatePromptModuleVersionRequestOptions {
|
|
5427
5531
|
static fromProto(proto) {
|
|
5428
|
-
let m = new
|
|
5532
|
+
let m = new CreatePromptModuleVersionRequestOptions();
|
|
5429
5533
|
m = Object.assign(m, proto);
|
|
5430
|
-
if (proto.contextInfo) {
|
|
5431
|
-
m.contextInfo = ContextInfo.fromProto(proto.contextInfo);
|
|
5432
|
-
}
|
|
5433
5534
|
return m;
|
|
5434
5535
|
}
|
|
5435
5536
|
constructor(kwargs) {
|
|
@@ -5440,11 +5541,8 @@ class ExecuteFunctionRequestOptions {
|
|
|
5440
5541
|
}
|
|
5441
5542
|
toApiJson() {
|
|
5442
5543
|
const toReturn = {};
|
|
5443
|
-
if (typeof this.
|
|
5444
|
-
toReturn['
|
|
5445
|
-
}
|
|
5446
|
-
if (typeof this.contextInfo !== 'undefined' && this.contextInfo !== null) {
|
|
5447
|
-
toReturn['contextInfo'] = 'toApiJson' in this.contextInfo ? this.contextInfo.toApiJson() : this.contextInfo;
|
|
5544
|
+
if (typeof this.shouldDeploy !== 'undefined') {
|
|
5545
|
+
toReturn['shouldDeploy'] = this.shouldDeploy;
|
|
5448
5546
|
}
|
|
5449
5547
|
return toReturn;
|
|
5450
5548
|
}
|
|
@@ -5533,41 +5631,6 @@ class ListGoalsRequestSortOptions {
|
|
|
5533
5631
|
return toReturn;
|
|
5534
5632
|
}
|
|
5535
5633
|
}
|
|
5536
|
-
class ToolCall {
|
|
5537
|
-
static fromProto(proto) {
|
|
5538
|
-
let m = new ToolCall();
|
|
5539
|
-
m = Object.assign(m, proto);
|
|
5540
|
-
if (proto.namespace) {
|
|
5541
|
-
m.namespace = Namespace.fromProto(proto.namespace);
|
|
5542
|
-
}
|
|
5543
|
-
return m;
|
|
5544
|
-
}
|
|
5545
|
-
constructor(kwargs) {
|
|
5546
|
-
if (!kwargs) {
|
|
5547
|
-
return;
|
|
5548
|
-
}
|
|
5549
|
-
Object.assign(this, kwargs);
|
|
5550
|
-
}
|
|
5551
|
-
toApiJson() {
|
|
5552
|
-
const toReturn = {};
|
|
5553
|
-
if (typeof this.toolName !== 'undefined') {
|
|
5554
|
-
toReturn['toolName'] = this.toolName;
|
|
5555
|
-
}
|
|
5556
|
-
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
5557
|
-
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
5558
|
-
}
|
|
5559
|
-
if (typeof this.arguments !== 'undefined') {
|
|
5560
|
-
toReturn['arguments'] = this.arguments;
|
|
5561
|
-
}
|
|
5562
|
-
if (typeof this.response !== 'undefined') {
|
|
5563
|
-
toReturn['response'] = this.response;
|
|
5564
|
-
}
|
|
5565
|
-
if (typeof this.noOp !== 'undefined') {
|
|
5566
|
-
toReturn['noOp'] = this.noOp;
|
|
5567
|
-
}
|
|
5568
|
-
return toReturn;
|
|
5569
|
-
}
|
|
5570
|
-
}
|
|
5571
5634
|
class UpdateAssistantRequest {
|
|
5572
5635
|
static fromProto(proto) {
|
|
5573
5636
|
let m = new UpdateAssistantRequest();
|
|
@@ -5917,15 +5980,12 @@ class ValidatePromptModulesResponse {
|
|
|
5917
5980
|
return toReturn;
|
|
5918
5981
|
}
|
|
5919
5982
|
}
|
|
5920
|
-
class
|
|
5983
|
+
class ValidatePromptModulesResponseValidationResult {
|
|
5921
5984
|
static fromProto(proto) {
|
|
5922
|
-
let m = new
|
|
5985
|
+
let m = new ValidatePromptModulesResponseValidationResult();
|
|
5923
5986
|
m = Object.assign(m, proto);
|
|
5924
|
-
if (proto.
|
|
5925
|
-
m.
|
|
5926
|
-
}
|
|
5927
|
-
if (proto.violations) {
|
|
5928
|
-
m.violations = proto.violations.map(ValidationViolation.fromProto);
|
|
5987
|
+
if (proto.namespace) {
|
|
5988
|
+
m.namespace = Namespace.fromProto(proto.namespace);
|
|
5929
5989
|
}
|
|
5930
5990
|
return m;
|
|
5931
5991
|
}
|
|
@@ -5937,11 +5997,17 @@ class ValidationResult {
|
|
|
5937
5997
|
}
|
|
5938
5998
|
toApiJson() {
|
|
5939
5999
|
const toReturn = {};
|
|
5940
|
-
if (typeof this.
|
|
5941
|
-
toReturn['
|
|
6000
|
+
if (typeof this.id !== 'undefined') {
|
|
6001
|
+
toReturn['id'] = this.id;
|
|
5942
6002
|
}
|
|
5943
|
-
if (typeof this.
|
|
5944
|
-
toReturn['
|
|
6003
|
+
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
6004
|
+
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
6005
|
+
}
|
|
6006
|
+
if (typeof this.isValid !== 'undefined') {
|
|
6007
|
+
toReturn['isValid'] = this.isValid;
|
|
6008
|
+
}
|
|
6009
|
+
if (typeof this.errorMessage !== 'undefined') {
|
|
6010
|
+
toReturn['errorMessage'] = this.errorMessage;
|
|
5945
6011
|
}
|
|
5946
6012
|
return toReturn;
|
|
5947
6013
|
}
|
|
@@ -5978,12 +6044,15 @@ class ValidatePromptModuleVersionsResponseValidationResult {
|
|
|
5978
6044
|
return toReturn;
|
|
5979
6045
|
}
|
|
5980
6046
|
}
|
|
5981
|
-
class
|
|
6047
|
+
class ValidationResult {
|
|
5982
6048
|
static fromProto(proto) {
|
|
5983
|
-
let m = new
|
|
6049
|
+
let m = new ValidationResult();
|
|
5984
6050
|
m = Object.assign(m, proto);
|
|
5985
|
-
if (proto.
|
|
5986
|
-
m.
|
|
6051
|
+
if (proto.failureAction) {
|
|
6052
|
+
m.failureAction = enumStringToValue(ValidationFailureAction, proto.failureAction);
|
|
6053
|
+
}
|
|
6054
|
+
if (proto.violations) {
|
|
6055
|
+
m.violations = proto.violations.map(ValidationViolation.fromProto);
|
|
5987
6056
|
}
|
|
5988
6057
|
return m;
|
|
5989
6058
|
}
|
|
@@ -5995,17 +6064,11 @@ class ValidatePromptModulesResponseValidationResult {
|
|
|
5995
6064
|
}
|
|
5996
6065
|
toApiJson() {
|
|
5997
6066
|
const toReturn = {};
|
|
5998
|
-
if (typeof this.
|
|
5999
|
-
toReturn['
|
|
6000
|
-
}
|
|
6001
|
-
if (typeof this.namespace !== 'undefined' && this.namespace !== null) {
|
|
6002
|
-
toReturn['namespace'] = 'toApiJson' in this.namespace ? this.namespace.toApiJson() : this.namespace;
|
|
6003
|
-
}
|
|
6004
|
-
if (typeof this.isValid !== 'undefined') {
|
|
6005
|
-
toReturn['isValid'] = this.isValid;
|
|
6067
|
+
if (typeof this.failureAction !== 'undefined') {
|
|
6068
|
+
toReturn['failureAction'] = this.failureAction;
|
|
6006
6069
|
}
|
|
6007
|
-
if (typeof this.
|
|
6008
|
-
toReturn['
|
|
6070
|
+
if (typeof this.violations !== 'undefined' && this.violations !== null) {
|
|
6071
|
+
toReturn['violations'] = 'toApiJson' in this.violations ? this.violations.toApiJson() : this.violations;
|
|
6009
6072
|
}
|
|
6010
6073
|
return toReturn;
|
|
6011
6074
|
}
|
|
@@ -6546,5 +6609,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
6546
6609
|
* Generated bundle index. Do not edit.
|
|
6547
6610
|
*/
|
|
6548
6611
|
|
|
6549
|
-
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 };
|
|
6612
|
+
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 };
|
|
6550
6613
|
//# sourceMappingURL=vendasta-ai-assistants.mjs.map
|