@vendasta/ai-assistants 0.49.0 → 0.50.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/assistant.api.service.mjs +1 -1
- package/esm2020/lib/_internal/enums/api.enum.mjs +20 -0
- package/esm2020/lib/_internal/enums/index.mjs +2 -1
- 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 +57 -22
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/fesm2015/vendasta-ai-assistants.mjs +77 -22
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +77 -22
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/api.enum.d.ts +11 -0
- package/lib/_internal/enums/index.d.ts +1 -0
- package/lib/_internal/interfaces/api.interface.d.ts +13 -7
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +24 -15
- package/lib/_internal/objects/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare enum StreamingGenerateChatAnswerResponseContentType {
|
|
2
|
+
CONTENT_TYPE_UNSPECIFIED = 0,
|
|
3
|
+
REASONING = 1,
|
|
4
|
+
ANSWER = 2,
|
|
5
|
+
ACTION_DESCRIPTION = 3,
|
|
6
|
+
WORKING = 4
|
|
7
|
+
}
|
|
8
|
+
export declare enum ListGoalsRequestSortingOrder {
|
|
9
|
+
GOAL_SORTING_ORDER_ASCENDING = 0,
|
|
10
|
+
GOAL_SORTING_ORDER_DESCENDING = 1
|
|
11
|
+
}
|
|
@@ -7,3 +7,4 @@ export { ModelType, ModelVendor, } from './model.enum';
|
|
|
7
7
|
export { VendorModel, } from './assistant.enum';
|
|
8
8
|
export { ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessageRole, } from './answer.enum';
|
|
9
9
|
export { SortDirection, } from './integration-tests.enum';
|
|
10
|
+
export { StreamingGenerateChatAnswerResponseContentType, ListGoalsRequestSortingOrder, } from './api.enum';
|
|
@@ -116,6 +116,8 @@ export interface ListGoalsRequestFiltersInterface {
|
|
|
116
116
|
supportedChannels?: e.GoalChannel[];
|
|
117
117
|
namespaces?: NamespaceInterface[];
|
|
118
118
|
constraintFilters?: ConstraintFilterInterface[];
|
|
119
|
+
searchTerm?: string;
|
|
120
|
+
sortOptions?: ListGoalsRequestSortOptionsInterface[];
|
|
119
121
|
}
|
|
120
122
|
export interface ListAvailableModelsRequestFiltersInterface {
|
|
121
123
|
vendor?: e.ModelVendor[];
|
|
@@ -353,30 +355,34 @@ export interface ListPromptVersionsResponseInterface {
|
|
|
353
355
|
promptVersions?: PromptVersionInterface[];
|
|
354
356
|
metadata?: PagedResponseMetadataInterface;
|
|
355
357
|
}
|
|
356
|
-
export interface CreatePromptModuleVersionRequestOptionsInterface {
|
|
357
|
-
shouldDeploy?: boolean;
|
|
358
|
-
}
|
|
359
|
-
export interface GetAssistantRequestOptionsInterface {
|
|
360
|
-
skipGoalsHydration?: boolean;
|
|
361
|
-
}
|
|
362
358
|
export interface GenerateChatAnswerRequestOptionsInterface {
|
|
363
359
|
includeAllCitations?: boolean;
|
|
364
360
|
enableAsyncFunctions?: boolean;
|
|
365
361
|
maxTokens?: number;
|
|
366
362
|
}
|
|
363
|
+
export interface GetMultiAssistantRequestOptionsInterface {
|
|
364
|
+
skipGoalsHydration?: boolean;
|
|
365
|
+
}
|
|
366
|
+
export interface CreatePromptModuleVersionRequestOptionsInterface {
|
|
367
|
+
shouldDeploy?: boolean;
|
|
368
|
+
}
|
|
367
369
|
export interface UpsertAssistantRequestOptionsInterface {
|
|
368
370
|
applyDefaults?: boolean;
|
|
369
371
|
}
|
|
370
372
|
export interface CreateAssistantRequestOptionsInterface {
|
|
371
373
|
applyDefaults?: boolean;
|
|
372
374
|
}
|
|
373
|
-
export interface
|
|
375
|
+
export interface GetAssistantRequestOptionsInterface {
|
|
374
376
|
skipGoalsHydration?: boolean;
|
|
375
377
|
}
|
|
376
378
|
export interface SetAssistantConnectionsRequestInterface {
|
|
377
379
|
associationStates?: SetAssistantConnectionsRequestConnectionStateInterface[];
|
|
378
380
|
assistantKey?: AssistantKeyInterface;
|
|
379
381
|
}
|
|
382
|
+
export interface ListGoalsRequestSortOptionsInterface {
|
|
383
|
+
field?: string;
|
|
384
|
+
order?: e.ListGoalsRequestSortingOrder;
|
|
385
|
+
}
|
|
380
386
|
export interface UpdateAssistantRequestInterface {
|
|
381
387
|
assistant?: AssistantInterface;
|
|
382
388
|
fieldMask?: FieldMaskInterface;
|
|
@@ -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, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, ListGoalsRequestFiltersInterface, ListAvailableModelsRequestFiltersInterface, ListFunctionRequestFiltersInterface, ListAssistantRequestFiltersInterface, 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,
|
|
15
|
+
export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateAssistantRequestInterface, CreateAssistantResponseInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, ListGoalsRequestFiltersInterface, ListAvailableModelsRequestFiltersInterface, ListFunctionRequestFiltersInterface, ListAssistantRequestFiltersInterface, 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, GenerateChatAnswerRequestOptionsInterface, GetMultiAssistantRequestOptionsInterface, CreatePromptModuleVersionRequestOptionsInterface, UpsertAssistantRequestOptionsInterface, CreateAssistantRequestOptionsInterface, GetAssistantRequestOptionsInterface, SetAssistantConnectionsRequestInterface, ListGoalsRequestSortOptionsInterface, UpdateAssistantRequestInterface, UpdateGoalRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, ValidatePromptModuleRequestInterface, ValidatePromptModuleResponseInterface, } from './api.interface';
|
|
@@ -190,6 +190,8 @@ export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFilter
|
|
|
190
190
|
supportedChannels: e.GoalChannel[];
|
|
191
191
|
namespaces: Namespace[];
|
|
192
192
|
constraintFilters: ConstraintFilter[];
|
|
193
|
+
searchTerm: string;
|
|
194
|
+
sortOptions: ListGoalsRequestSortOptions[];
|
|
193
195
|
static fromProto(proto: any): ListGoalsRequestFilters;
|
|
194
196
|
constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
|
|
195
197
|
toApiJson(): object;
|
|
@@ -613,18 +615,6 @@ export declare class ListPromptVersionsResponse implements i.ListPromptVersionsR
|
|
|
613
615
|
constructor(kwargs?: i.ListPromptVersionsResponseInterface);
|
|
614
616
|
toApiJson(): object;
|
|
615
617
|
}
|
|
616
|
-
export declare class CreatePromptModuleVersionRequestOptions implements i.CreatePromptModuleVersionRequestOptionsInterface {
|
|
617
|
-
shouldDeploy: boolean;
|
|
618
|
-
static fromProto(proto: any): CreatePromptModuleVersionRequestOptions;
|
|
619
|
-
constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
|
|
620
|
-
toApiJson(): object;
|
|
621
|
-
}
|
|
622
|
-
export declare class GetAssistantRequestOptions implements i.GetAssistantRequestOptionsInterface {
|
|
623
|
-
skipGoalsHydration: boolean;
|
|
624
|
-
static fromProto(proto: any): GetAssistantRequestOptions;
|
|
625
|
-
constructor(kwargs?: i.GetAssistantRequestOptionsInterface);
|
|
626
|
-
toApiJson(): object;
|
|
627
|
-
}
|
|
628
618
|
export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatAnswerRequestOptionsInterface {
|
|
629
619
|
includeAllCitations: boolean;
|
|
630
620
|
enableAsyncFunctions: boolean;
|
|
@@ -633,6 +623,18 @@ export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatA
|
|
|
633
623
|
constructor(kwargs?: i.GenerateChatAnswerRequestOptionsInterface);
|
|
634
624
|
toApiJson(): object;
|
|
635
625
|
}
|
|
626
|
+
export declare class GetMultiAssistantRequestOptions implements i.GetMultiAssistantRequestOptionsInterface {
|
|
627
|
+
skipGoalsHydration: boolean;
|
|
628
|
+
static fromProto(proto: any): GetMultiAssistantRequestOptions;
|
|
629
|
+
constructor(kwargs?: i.GetMultiAssistantRequestOptionsInterface);
|
|
630
|
+
toApiJson(): object;
|
|
631
|
+
}
|
|
632
|
+
export declare class CreatePromptModuleVersionRequestOptions implements i.CreatePromptModuleVersionRequestOptionsInterface {
|
|
633
|
+
shouldDeploy: boolean;
|
|
634
|
+
static fromProto(proto: any): CreatePromptModuleVersionRequestOptions;
|
|
635
|
+
constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
|
|
636
|
+
toApiJson(): object;
|
|
637
|
+
}
|
|
636
638
|
export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantRequestOptionsInterface {
|
|
637
639
|
applyDefaults: boolean;
|
|
638
640
|
static fromProto(proto: any): UpsertAssistantRequestOptions;
|
|
@@ -645,10 +647,10 @@ export declare class CreateAssistantRequestOptions implements i.CreateAssistantR
|
|
|
645
647
|
constructor(kwargs?: i.CreateAssistantRequestOptionsInterface);
|
|
646
648
|
toApiJson(): object;
|
|
647
649
|
}
|
|
648
|
-
export declare class
|
|
650
|
+
export declare class GetAssistantRequestOptions implements i.GetAssistantRequestOptionsInterface {
|
|
649
651
|
skipGoalsHydration: boolean;
|
|
650
|
-
static fromProto(proto: any):
|
|
651
|
-
constructor(kwargs?: i.
|
|
652
|
+
static fromProto(proto: any): GetAssistantRequestOptions;
|
|
653
|
+
constructor(kwargs?: i.GetAssistantRequestOptionsInterface);
|
|
652
654
|
toApiJson(): object;
|
|
653
655
|
}
|
|
654
656
|
export declare class SetAssistantConnectionsRequest implements i.SetAssistantConnectionsRequestInterface {
|
|
@@ -658,6 +660,13 @@ export declare class SetAssistantConnectionsRequest implements i.SetAssistantCon
|
|
|
658
660
|
constructor(kwargs?: i.SetAssistantConnectionsRequestInterface);
|
|
659
661
|
toApiJson(): object;
|
|
660
662
|
}
|
|
663
|
+
export declare class ListGoalsRequestSortOptions implements i.ListGoalsRequestSortOptionsInterface {
|
|
664
|
+
field: string;
|
|
665
|
+
order: e.ListGoalsRequestSortingOrder;
|
|
666
|
+
static fromProto(proto: any): ListGoalsRequestSortOptions;
|
|
667
|
+
constructor(kwargs?: i.ListGoalsRequestSortOptionsInterface);
|
|
668
|
+
toApiJson(): object;
|
|
669
|
+
}
|
|
661
670
|
export declare class UpdateAssistantRequest implements i.UpdateAssistantRequestInterface {
|
|
662
671
|
assistant: Assistant;
|
|
663
672
|
fieldMask: FieldMask;
|
|
@@ -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, ListAllAssistantsAssociatedToConnectionRequestFilters, ListConnectionsRequestFilters, ListPromptModuleRequestFilters, ListGoalsRequestFilters, ListAvailableModelsRequestFilters, ListFunctionRequestFilters, ListAssistantRequestFilters, 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,
|
|
15
|
+
export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateAssistantRequest, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListAllAssistantsAssociatedToConnectionRequestFilters, ListConnectionsRequestFilters, ListPromptModuleRequestFilters, ListGoalsRequestFilters, ListAvailableModelsRequestFilters, ListFunctionRequestFilters, ListAssistantRequestFilters, 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, GenerateChatAnswerRequestOptions, GetMultiAssistantRequestOptions, CreatePromptModuleVersionRequestOptions, UpsertAssistantRequestOptions, CreateAssistantRequestOptions, GetAssistantRequestOptions, SetAssistantConnectionsRequest, ListGoalsRequestSortOptions, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, ValidatePromptModuleRequest, ValidatePromptModuleResponse, } from './api';
|