@vendasta/ai-assistants 0.56.0 → 0.57.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/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +106 -71
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/fesm2015/vendasta-ai-assistants.mjs +106 -71
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +106 -71
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +26 -20
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +42 -33
- package/lib/_internal/objects/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -97,6 +97,7 @@ export interface ExecuteFunctionRequestInterface {
|
|
|
97
97
|
assistantKey?: AssistantKeyInterface;
|
|
98
98
|
functionKey?: FunctionKeyInterface;
|
|
99
99
|
arguments?: string;
|
|
100
|
+
options?: ExecuteFunctionRequestOptionsInterface;
|
|
100
101
|
}
|
|
101
102
|
export interface ExecuteFunctionResponseInterface {
|
|
102
103
|
output?: string;
|
|
@@ -106,14 +107,9 @@ export interface ListAssistantRequestFiltersInterface {
|
|
|
106
107
|
namespace?: NamespaceInterface;
|
|
107
108
|
type?: e.AssistantType;
|
|
108
109
|
}
|
|
109
|
-
export interface
|
|
110
|
-
|
|
111
|
-
type?: e.
|
|
112
|
-
supportedChannels?: e.GoalChannel[];
|
|
113
|
-
namespaces?: NamespaceInterface[];
|
|
114
|
-
constraintFilters?: ConstraintFilterInterface[];
|
|
115
|
-
searchTerm?: string;
|
|
116
|
-
sortOptions?: ListGoalsRequestSortOptionsInterface[];
|
|
110
|
+
export interface ListAvailableModelsRequestFiltersInterface {
|
|
111
|
+
vendor?: e.ModelVendor[];
|
|
112
|
+
type?: e.ModelType[];
|
|
117
113
|
}
|
|
118
114
|
export interface ListConnectionsRequestFiltersInterface {
|
|
119
115
|
namespace?: NamespaceInterface;
|
|
@@ -122,9 +118,15 @@ export interface ListConnectionsRequestFiltersInterface {
|
|
|
122
118
|
export interface ListPromptModuleRequestFiltersInterface {
|
|
123
119
|
namespace?: NamespaceInterface;
|
|
124
120
|
}
|
|
125
|
-
export interface
|
|
126
|
-
|
|
127
|
-
type?: e.
|
|
121
|
+
export interface ListGoalsRequestFiltersInterface {
|
|
122
|
+
namespace?: NamespaceInterface;
|
|
123
|
+
type?: e.GoalType;
|
|
124
|
+
supportedChannels?: e.GoalChannel[];
|
|
125
|
+
namespaces?: NamespaceInterface[];
|
|
126
|
+
constraintFilters?: ConstraintFilterInterface[];
|
|
127
|
+
searchTerm?: string;
|
|
128
|
+
sortOptions?: ListGoalsRequestSortOptionsInterface[];
|
|
129
|
+
omitOverrides?: boolean;
|
|
128
130
|
}
|
|
129
131
|
export interface ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
130
132
|
type?: e.AssistantType;
|
|
@@ -364,26 +366,30 @@ export interface ListTemplateVariablesRequestInterface {
|
|
|
364
366
|
export interface ListTemplateVariablesResponseInterface {
|
|
365
367
|
assistantScopedVariables?: TemplateVariableInterface[];
|
|
366
368
|
}
|
|
367
|
-
export interface CreatePromptModuleVersionRequestOptionsInterface {
|
|
368
|
-
shouldDeploy?: boolean;
|
|
369
|
-
}
|
|
370
|
-
export interface UpsertAssistantRequestOptionsInterface {
|
|
371
|
-
applyDefaults?: boolean;
|
|
372
|
-
}
|
|
373
369
|
export interface GenerateChatAnswerRequestOptionsInterface {
|
|
374
370
|
includeAllCitations?: boolean;
|
|
375
371
|
enableAsyncFunctions?: boolean;
|
|
376
372
|
maxTokens?: number;
|
|
377
373
|
}
|
|
374
|
+
export interface ExecuteFunctionRequestOptionsInterface {
|
|
375
|
+
skipComputeTemplateVariables?: boolean;
|
|
376
|
+
contextInfo?: ContextInfoInterface;
|
|
377
|
+
}
|
|
378
|
+
export interface CreateAssistantRequestOptionsInterface {
|
|
379
|
+
applyDefaults?: boolean;
|
|
380
|
+
}
|
|
378
381
|
export interface GetAssistantRequestOptionsInterface {
|
|
379
382
|
skipGoalsHydration?: boolean;
|
|
380
383
|
}
|
|
384
|
+
export interface UpsertAssistantRequestOptionsInterface {
|
|
385
|
+
applyDefaults?: boolean;
|
|
386
|
+
}
|
|
387
|
+
export interface CreatePromptModuleVersionRequestOptionsInterface {
|
|
388
|
+
shouldDeploy?: boolean;
|
|
389
|
+
}
|
|
381
390
|
export interface GetMultiAssistantRequestOptionsInterface {
|
|
382
391
|
skipGoalsHydration?: boolean;
|
|
383
392
|
}
|
|
384
|
-
export interface CreateAssistantRequestOptionsInterface {
|
|
385
|
-
applyDefaults?: boolean;
|
|
386
|
-
}
|
|
387
393
|
export interface SetAssistantConnectionsRequestInterface {
|
|
388
394
|
associationStates?: SetAssistantConnectionsRequestConnectionStateInterface[];
|
|
389
395
|
assistantKey?: AssistantKeyInterface;
|
|
@@ -12,4 +12,4 @@ export { ChatAnswerFunctionExecutionJobInterface, ChatAnswerFunctionExecutionJob
|
|
|
12
12
|
export { CancelTestRunRequestInterface, TestResultCitationInterface, DeleteTestCasesRequestInterface, GetTestRunRequestInterface, GetTestRunResponseInterface, ListTestCasesByAssistantRequestInterface, ListTestCasesByAssistantResponseInterface, ListTestRunsByAssistantRequestInterface, ListTestRunsByAssistantResponseInterface, RunTestsRequestInterface, RunTestsResponseInterface, SortOptionsInterface, TestCaseInterface, TestResultInterface, TestRunInterface, UpsertTestCasesRequestInterface, } from './integration-tests.interface';
|
|
13
13
|
export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
|
|
14
14
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
15
|
-
export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateAssistantRequestInterface, CreateAssistantResponseInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListAssistantRequestFiltersInterface,
|
|
15
|
+
export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateAssistantRequestInterface, CreateAssistantResponseInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListAssistantRequestFiltersInterface, ListAvailableModelsRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, ListGoalsRequestFiltersInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListFunctionRequestFiltersInterface, GenerateChatAnswerRequestInterface, GenerateChatAnswerResponseInterface, GetAssistantRequestInterface, GetAssistantResponseInterface, GetChatAnswerFunctionExecutionJobRequestInterface, GetChatAnswerFunctionExecutionJobResponseInterface, GetConnectionRequestInterface, GetConnectionResponseInterface, GetDeployedPromptModuleVersionRequestInterface, GetDeployedPromptModuleVersionResponseInterface, GetDeployedPromptVersionRequestInterface, GetDeployedPromptVersionResponseInterface, GetFunctionRequestInterface, GetFunctionResponseInterface, GetGoalRequestInterface, GetGoalResponseInterface, GetHydratedDeployedPromptModuleVersionRequestInterface, GetHydratedDeployedPromptModuleVersionResponseInterface, GetMultiAssistantRequestInterface, GetMultiAssistantResponseInterface, GetMultiDeployedPromptVersionRequestInterface, GetMultiDeployedPromptVersionResponseInterface, GetMultiFunctionRequestInterface, GetMultiFunctionResponseInterface, GetMultiGoalRequestInterface, GetMultiGoalResponseInterface, GetMultiHydratedDeployedPromptModuleVersionRequestInterface, GetMultiHydratedDeployedPromptModuleVersionResponseInterface, GetPromptModuleRequestInterface, GetPromptModuleResponseInterface, GetPromptModuleVersionRequestInterface, GetPromptModuleVersionResponseInterface, GetPromptRequestInterface, GetPromptResponseInterface, GetPromptVersionRequestInterface, GetPromptVersionResponseInterface, GoalsDisabledForAccountGroupRequestInterface, GoalsDisabledForAccountGroupResponseInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAllAssistantsAssociatedToConnectionResponseInterface, ListAssistantRequestInterface, ListAssistantResponseInterface, ListAvailableModelsRequestInterface, ListAvailableModelsResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListFunctionRequestInterface, ListFunctionResponseInterface, ListGoalsRequestInterface, ListGoalsResponseInterface, ListPromptModuleRequestInterface, ListPromptModuleResponseInterface, ListPromptModuleVersionsRequestInterface, ListPromptModuleVersionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, ListTemplateVariablesRequestInterface, ListTemplateVariablesResponseInterface, GenerateChatAnswerRequestOptionsInterface, ExecuteFunctionRequestOptionsInterface, CreateAssistantRequestOptionsInterface, GetAssistantRequestOptionsInterface, UpsertAssistantRequestOptionsInterface, CreatePromptModuleVersionRequestOptionsInterface, GetMultiAssistantRequestOptionsInterface, SetAssistantConnectionsRequestInterface, ListGoalsRequestSortOptionsInterface, UpdateAssistantRequestInterface, UpdateGoalRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, ValidatePromptModuleRequestInterface, ValidatePromptModuleResponseInterface, } from './api.interface';
|
|
@@ -156,6 +156,7 @@ export declare class ExecuteFunctionRequest implements i.ExecuteFunctionRequestI
|
|
|
156
156
|
assistantKey: AssistantKey;
|
|
157
157
|
functionKey: FunctionKey;
|
|
158
158
|
arguments: string;
|
|
159
|
+
options: ExecuteFunctionRequestOptions;
|
|
159
160
|
static fromProto(proto: any): ExecuteFunctionRequest;
|
|
160
161
|
constructor(kwargs?: i.ExecuteFunctionRequestInterface);
|
|
161
162
|
toApiJson(): object;
|
|
@@ -174,16 +175,11 @@ export declare class ListAssistantRequestFilters implements i.ListAssistantReque
|
|
|
174
175
|
constructor(kwargs?: i.ListAssistantRequestFiltersInterface);
|
|
175
176
|
toApiJson(): object;
|
|
176
177
|
}
|
|
177
|
-
export declare class
|
|
178
|
-
|
|
179
|
-
type: e.
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
constraintFilters: ConstraintFilter[];
|
|
183
|
-
searchTerm: string;
|
|
184
|
-
sortOptions: ListGoalsRequestSortOptions[];
|
|
185
|
-
static fromProto(proto: any): ListGoalsRequestFilters;
|
|
186
|
-
constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
|
|
178
|
+
export declare class ListAvailableModelsRequestFilters implements i.ListAvailableModelsRequestFiltersInterface {
|
|
179
|
+
vendor: e.ModelVendor[];
|
|
180
|
+
type: e.ModelType[];
|
|
181
|
+
static fromProto(proto: any): ListAvailableModelsRequestFilters;
|
|
182
|
+
constructor(kwargs?: i.ListAvailableModelsRequestFiltersInterface);
|
|
187
183
|
toApiJson(): object;
|
|
188
184
|
}
|
|
189
185
|
export declare class ListConnectionsRequestFilters implements i.ListConnectionsRequestFiltersInterface {
|
|
@@ -199,11 +195,17 @@ export declare class ListPromptModuleRequestFilters implements i.ListPromptModul
|
|
|
199
195
|
constructor(kwargs?: i.ListPromptModuleRequestFiltersInterface);
|
|
200
196
|
toApiJson(): object;
|
|
201
197
|
}
|
|
202
|
-
export declare class
|
|
203
|
-
|
|
204
|
-
type: e.
|
|
205
|
-
|
|
206
|
-
|
|
198
|
+
export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFiltersInterface {
|
|
199
|
+
namespace: Namespace;
|
|
200
|
+
type: e.GoalType;
|
|
201
|
+
supportedChannels: e.GoalChannel[];
|
|
202
|
+
namespaces: Namespace[];
|
|
203
|
+
constraintFilters: ConstraintFilter[];
|
|
204
|
+
searchTerm: string;
|
|
205
|
+
sortOptions: ListGoalsRequestSortOptions[];
|
|
206
|
+
omitOverrides: boolean;
|
|
207
|
+
static fromProto(proto: any): ListGoalsRequestFilters;
|
|
208
|
+
constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
|
|
207
209
|
toApiJson(): object;
|
|
208
210
|
}
|
|
209
211
|
export declare class ListAllAssistantsAssociatedToConnectionRequestFilters implements i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
@@ -630,18 +632,6 @@ export declare class ListTemplateVariablesResponse implements i.ListTemplateVari
|
|
|
630
632
|
constructor(kwargs?: i.ListTemplateVariablesResponseInterface);
|
|
631
633
|
toApiJson(): object;
|
|
632
634
|
}
|
|
633
|
-
export declare class CreatePromptModuleVersionRequestOptions implements i.CreatePromptModuleVersionRequestOptionsInterface {
|
|
634
|
-
shouldDeploy: boolean;
|
|
635
|
-
static fromProto(proto: any): CreatePromptModuleVersionRequestOptions;
|
|
636
|
-
constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
|
|
637
|
-
toApiJson(): object;
|
|
638
|
-
}
|
|
639
|
-
export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantRequestOptionsInterface {
|
|
640
|
-
applyDefaults: boolean;
|
|
641
|
-
static fromProto(proto: any): UpsertAssistantRequestOptions;
|
|
642
|
-
constructor(kwargs?: i.UpsertAssistantRequestOptionsInterface);
|
|
643
|
-
toApiJson(): object;
|
|
644
|
-
}
|
|
645
635
|
export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatAnswerRequestOptionsInterface {
|
|
646
636
|
includeAllCitations: boolean;
|
|
647
637
|
enableAsyncFunctions: boolean;
|
|
@@ -650,24 +640,43 @@ export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatA
|
|
|
650
640
|
constructor(kwargs?: i.GenerateChatAnswerRequestOptionsInterface);
|
|
651
641
|
toApiJson(): object;
|
|
652
642
|
}
|
|
643
|
+
export declare class ExecuteFunctionRequestOptions implements i.ExecuteFunctionRequestOptionsInterface {
|
|
644
|
+
skipComputeTemplateVariables: boolean;
|
|
645
|
+
contextInfo: ContextInfo;
|
|
646
|
+
static fromProto(proto: any): ExecuteFunctionRequestOptions;
|
|
647
|
+
constructor(kwargs?: i.ExecuteFunctionRequestOptionsInterface);
|
|
648
|
+
toApiJson(): object;
|
|
649
|
+
}
|
|
650
|
+
export declare class CreateAssistantRequestOptions implements i.CreateAssistantRequestOptionsInterface {
|
|
651
|
+
applyDefaults: boolean;
|
|
652
|
+
static fromProto(proto: any): CreateAssistantRequestOptions;
|
|
653
|
+
constructor(kwargs?: i.CreateAssistantRequestOptionsInterface);
|
|
654
|
+
toApiJson(): object;
|
|
655
|
+
}
|
|
653
656
|
export declare class GetAssistantRequestOptions implements i.GetAssistantRequestOptionsInterface {
|
|
654
657
|
skipGoalsHydration: boolean;
|
|
655
658
|
static fromProto(proto: any): GetAssistantRequestOptions;
|
|
656
659
|
constructor(kwargs?: i.GetAssistantRequestOptionsInterface);
|
|
657
660
|
toApiJson(): object;
|
|
658
661
|
}
|
|
662
|
+
export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantRequestOptionsInterface {
|
|
663
|
+
applyDefaults: boolean;
|
|
664
|
+
static fromProto(proto: any): UpsertAssistantRequestOptions;
|
|
665
|
+
constructor(kwargs?: i.UpsertAssistantRequestOptionsInterface);
|
|
666
|
+
toApiJson(): object;
|
|
667
|
+
}
|
|
668
|
+
export declare class CreatePromptModuleVersionRequestOptions implements i.CreatePromptModuleVersionRequestOptionsInterface {
|
|
669
|
+
shouldDeploy: boolean;
|
|
670
|
+
static fromProto(proto: any): CreatePromptModuleVersionRequestOptions;
|
|
671
|
+
constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
|
|
672
|
+
toApiJson(): object;
|
|
673
|
+
}
|
|
659
674
|
export declare class GetMultiAssistantRequestOptions implements i.GetMultiAssistantRequestOptionsInterface {
|
|
660
675
|
skipGoalsHydration: boolean;
|
|
661
676
|
static fromProto(proto: any): GetMultiAssistantRequestOptions;
|
|
662
677
|
constructor(kwargs?: i.GetMultiAssistantRequestOptionsInterface);
|
|
663
678
|
toApiJson(): object;
|
|
664
679
|
}
|
|
665
|
-
export declare class CreateAssistantRequestOptions implements i.CreateAssistantRequestOptionsInterface {
|
|
666
|
-
applyDefaults: boolean;
|
|
667
|
-
static fromProto(proto: any): CreateAssistantRequestOptions;
|
|
668
|
-
constructor(kwargs?: i.CreateAssistantRequestOptionsInterface);
|
|
669
|
-
toApiJson(): object;
|
|
670
|
-
}
|
|
671
680
|
export declare class SetAssistantConnectionsRequest implements i.SetAssistantConnectionsRequestInterface {
|
|
672
681
|
associationStates: SetAssistantConnectionsRequestConnectionState[];
|
|
673
682
|
assistantKey: AssistantKey;
|
|
@@ -12,4 +12,4 @@ export { ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, C
|
|
|
12
12
|
export { CancelTestRunRequest, TestResultCitation, DeleteTestCasesRequest, GetTestRunRequest, GetTestRunResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, RunTestsRequest, RunTestsResponse, SortOptions, TestCase, TestResult, TestRun, UpsertTestCasesRequest, } from './integration-tests';
|
|
13
13
|
export { Access, MCPOptions, } from './annotations';
|
|
14
14
|
export { FieldMask, } from './field-mask';
|
|
15
|
-
export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateAssistantRequest, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListAssistantRequestFilters,
|
|
15
|
+
export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateAssistantRequest, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListAssistantRequestFilters, ListAvailableModelsRequestFilters, ListConnectionsRequestFilters, ListPromptModuleRequestFilters, ListGoalsRequestFilters, ListAllAssistantsAssociatedToConnectionRequestFilters, ListFunctionRequestFilters, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiAssistantRequest, GetMultiAssistantResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsResponse, ListFunctionRequest, ListFunctionResponse, ListGoalsRequest, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, ListTemplateVariablesRequest, ListTemplateVariablesResponse, GenerateChatAnswerRequestOptions, ExecuteFunctionRequestOptions, CreateAssistantRequestOptions, GetAssistantRequestOptions, UpsertAssistantRequestOptions, CreatePromptModuleVersionRequestOptions, GetMultiAssistantRequestOptions, SetAssistantConnectionsRequest, ListGoalsRequestSortOptions, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, } from './api';
|