@vendasta/ai-assistants 0.26.0 → 0.27.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 +7 -2
- 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 +103 -45
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/fesm2015/vendasta-ai-assistants.mjs +107 -44
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +107 -44
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/assistant.api.service.d.ts +3 -2
- package/lib/_internal/interfaces/api.interface.d.ts +20 -11
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +42 -27
- package/lib/_internal/objects/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, DeleteAssistantRequest, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, SetAssistantConnectionsRequest, UpsertAssistantRequest, UpsertAssistantResponse } from './objects/';
|
|
2
|
-
import { BuildDefaultAssistantRequestInterface, DeleteAssistantRequestInterface, GenerateChatAnswerRequestInterface, GetAssistantRequestInterface, GetChatAnswerFunctionExecutionJobRequestInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAssistantRequestInterface, SetAssistantConnectionsRequestInterface, UpsertAssistantRequestInterface } from './interfaces/';
|
|
1
|
+
import { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, DeleteAssistantRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, SetAssistantConnectionsRequest, UpsertAssistantRequest, UpsertAssistantResponse } from './objects/';
|
|
2
|
+
import { BuildDefaultAssistantRequestInterface, DeleteAssistantRequestInterface, ExecuteFunctionRequestInterface, GenerateChatAnswerRequestInterface, GetAssistantRequestInterface, GetChatAnswerFunctionExecutionJobRequestInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAssistantRequestInterface, SetAssistantConnectionsRequestInterface, UpsertAssistantRequestInterface } from './interfaces/';
|
|
3
3
|
import { HttpResponse } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -17,6 +17,7 @@ export declare class AssistantApiService {
|
|
|
17
17
|
generateChatAnswer(r: GenerateChatAnswerRequest | GenerateChatAnswerRequestInterface): Observable<GenerateChatAnswerResponse>;
|
|
18
18
|
getChatAnswerFunctionExecutionJob(r: GetChatAnswerFunctionExecutionJobRequest | GetChatAnswerFunctionExecutionJobRequestInterface): Observable<GetChatAnswerFunctionExecutionJobResponse>;
|
|
19
19
|
setAssistantConnections(r: SetAssistantConnectionsRequest | SetAssistantConnectionsRequestInterface): Observable<HttpResponse<null>>;
|
|
20
|
+
executeFunction(r: ExecuteFunctionRequest | ExecuteFunctionRequestInterface): Observable<ExecuteFunctionResponse>;
|
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<AssistantApiService, never>;
|
|
21
22
|
static ɵprov: i0.ɵɵInjectableDeclaration<AssistantApiService>;
|
|
22
23
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AssistantInterface, AssistantKeyInterface } from './assistant.interface';
|
|
2
2
|
import { ChatMessageInterface, ChatUserInfoInterface, ChatAnswerFunctionExecutionJobInterface } from './answer.interface';
|
|
3
3
|
import { ConnectionKeyInterface, ConnectionInterface } from './connection.interface';
|
|
4
|
-
import {
|
|
4
|
+
import { FunctionKeyInterface, FunctionInterface } from './function.interface';
|
|
5
5
|
import { GoalInterface, GoalKeyInterface } from './goal.interface';
|
|
6
6
|
import { KeyValuePairInterface } from './common.interface';
|
|
7
7
|
import { NamespaceInterface } from './namespace.interface';
|
|
@@ -81,21 +81,30 @@ export interface DeployPromptRequestInterface {
|
|
|
81
81
|
id?: string;
|
|
82
82
|
version?: string;
|
|
83
83
|
}
|
|
84
|
-
export interface
|
|
85
|
-
|
|
86
|
-
|
|
84
|
+
export interface ExecuteFunctionRequestInterface {
|
|
85
|
+
assistantKey?: AssistantKeyInterface;
|
|
86
|
+
functionKey?: FunctionKeyInterface;
|
|
87
|
+
arguments?: string;
|
|
87
88
|
}
|
|
88
|
-
export interface
|
|
89
|
+
export interface ExecuteFunctionResponseInterface {
|
|
90
|
+
output?: string;
|
|
91
|
+
metadata?: KeyValuePairInterface[];
|
|
92
|
+
}
|
|
93
|
+
export interface ListAssistantRequestFiltersInterface {
|
|
89
94
|
namespace?: NamespaceInterface;
|
|
95
|
+
type?: e.AssistantType;
|
|
90
96
|
}
|
|
91
97
|
export interface ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
92
98
|
type?: e.AssistantType;
|
|
93
99
|
}
|
|
94
|
-
export interface
|
|
100
|
+
export interface ListFunctionRequestFiltersInterface {
|
|
95
101
|
namespace?: NamespaceInterface;
|
|
96
|
-
type?: e.AssistantType;
|
|
97
102
|
}
|
|
98
|
-
export interface
|
|
103
|
+
export interface ListConnectionsRequestFiltersInterface {
|
|
104
|
+
namespace?: NamespaceInterface;
|
|
105
|
+
assistantType?: e.AssistantType;
|
|
106
|
+
}
|
|
107
|
+
export interface ListPromptModuleRequestFiltersInterface {
|
|
99
108
|
namespace?: NamespaceInterface;
|
|
100
109
|
}
|
|
101
110
|
export interface ListGoalsRequestFiltersInterface {
|
|
@@ -308,14 +317,14 @@ export interface ListPromptVersionsResponseInterface {
|
|
|
308
317
|
promptVersions?: PromptVersionInterface[];
|
|
309
318
|
metadata?: PagedResponseMetadataInterface;
|
|
310
319
|
}
|
|
311
|
-
export interface UpsertAssistantRequestOptionsInterface {
|
|
312
|
-
applyDefaults?: boolean;
|
|
313
|
-
}
|
|
314
320
|
export interface GenerateChatAnswerRequestOptionsInterface {
|
|
315
321
|
includeAllCitations?: boolean;
|
|
316
322
|
enableAsyncFunctions?: boolean;
|
|
317
323
|
maxTokens?: number;
|
|
318
324
|
}
|
|
325
|
+
export interface UpsertAssistantRequestOptionsInterface {
|
|
326
|
+
applyDefaults?: boolean;
|
|
327
|
+
}
|
|
319
328
|
export interface CreatePromptModuleVersionRequestOptionsInterface {
|
|
320
329
|
shouldDeploy?: boolean;
|
|
321
330
|
}
|
|
@@ -8,4 +8,4 @@ export { ConnectionInterface, ConnectionKeyInterface, } from './connection.inter
|
|
|
8
8
|
export { ChatAnswerFunctionExecutionJobInterface, ChatAnswerFunctionExecutionJobResultInterface, ChatMessageInterface, ChatUserInfoInterface, } from './answer.interface';
|
|
9
9
|
export { AccessInterface, } from './annotations.interface';
|
|
10
10
|
export { PagedRequestOptionsInterface, PagedResponseMetadataInterface, } from './paging.interface';
|
|
11
|
-
export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface,
|
|
11
|
+
export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListAssistantRequestFiltersInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListFunctionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, ListGoalsRequestFiltersInterface, GenerateChatAnswerRequestInterface, GenerateChatAnswerResponseInterface, GetAssistantRequestInterface, GetAssistantResponseInterface, GetChatAnswerFunctionExecutionJobRequestInterface, GetChatAnswerFunctionExecutionJobResponseInterface, GetConnectionRequestInterface, GetConnectionResponseInterface, GetDeployedPromptModuleVersionRequestInterface, GetDeployedPromptModuleVersionResponseInterface, GetDeployedPromptVersionRequestInterface, GetDeployedPromptVersionResponseInterface, GetFunctionRequestInterface, GetFunctionResponseInterface, GetGoalRequestInterface, GetGoalResponseInterface, GetHydratedDeployedPromptModuleVersionRequestInterface, GetHydratedDeployedPromptModuleVersionResponseInterface, GetMultiDeployedPromptVersionRequestInterface, GetMultiDeployedPromptVersionResponseInterface, GetMultiFunctionRequestInterface, GetMultiFunctionResponseInterface, GetMultiGoalRequestInterface, GetMultiGoalResponseInterface, GetMultiHydratedDeployedPromptModuleVersionRequestInterface, GetMultiHydratedDeployedPromptModuleVersionResponseInterface, GetPromptModuleRequestInterface, GetPromptModuleResponseInterface, GetPromptModuleVersionRequestInterface, GetPromptModuleVersionResponseInterface, GetPromptRequestInterface, GetPromptResponseInterface, GetPromptVersionRequestInterface, GetPromptVersionResponseInterface, GoalsDisabledForAccountGroupRequestInterface, GoalsDisabledForAccountGroupResponseInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAllAssistantsAssociatedToConnectionResponseInterface, ListAssistantRequestInterface, ListAssistantResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListFunctionRequestInterface, ListFunctionResponseInterface, ListGoalsRequestInterface, ListGoalsResponseInterface, ListPromptModuleRequestInterface, ListPromptModuleResponseInterface, ListPromptModuleVersionsRequestInterface, ListPromptModuleVersionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, GenerateChatAnswerRequestOptionsInterface, UpsertAssistantRequestOptionsInterface, CreatePromptModuleVersionRequestOptionsInterface, SetAssistantConnectionsRequestInterface, UpdateGoalRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, } from './api.interface';
|
|
@@ -2,7 +2,7 @@ import * as i from '../interfaces';
|
|
|
2
2
|
import { Assistant, AssistantKey } from './assistant';
|
|
3
3
|
import { ChatMessage, ChatUserInfo, ChatAnswerFunctionExecutionJob } from './answer';
|
|
4
4
|
import { ConnectionKey, Connection } from './connection';
|
|
5
|
-
import {
|
|
5
|
+
import { FunctionKey, Function } from './function';
|
|
6
6
|
import { Goal, GoalKey } from './goal';
|
|
7
7
|
import { KeyValuePair } from './common';
|
|
8
8
|
import { Namespace } from './namespace';
|
|
@@ -134,17 +134,27 @@ export declare class DeployPromptRequest implements i.DeployPromptRequestInterfa
|
|
|
134
134
|
constructor(kwargs?: i.DeployPromptRequestInterface);
|
|
135
135
|
toApiJson(): object;
|
|
136
136
|
}
|
|
137
|
-
export declare class
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
137
|
+
export declare class ExecuteFunctionRequest implements i.ExecuteFunctionRequestInterface {
|
|
138
|
+
assistantKey: AssistantKey;
|
|
139
|
+
functionKey: FunctionKey;
|
|
140
|
+
arguments: string;
|
|
141
|
+
static fromProto(proto: any): ExecuteFunctionRequest;
|
|
142
|
+
constructor(kwargs?: i.ExecuteFunctionRequestInterface);
|
|
142
143
|
toApiJson(): object;
|
|
143
144
|
}
|
|
144
|
-
export declare class
|
|
145
|
+
export declare class ExecuteFunctionResponse implements i.ExecuteFunctionResponseInterface {
|
|
146
|
+
output: string;
|
|
147
|
+
metadata: KeyValuePair[];
|
|
148
|
+
static fromProto(proto: any): ExecuteFunctionResponse;
|
|
149
|
+
constructor(kwargs?: i.ExecuteFunctionResponseInterface);
|
|
150
|
+
toApiJson(): object;
|
|
151
|
+
}
|
|
152
|
+
export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFiltersInterface {
|
|
145
153
|
namespace: Namespace;
|
|
146
|
-
|
|
147
|
-
|
|
154
|
+
type: e.GoalType;
|
|
155
|
+
supportedChannels: e.GoalChannel[];
|
|
156
|
+
static fromProto(proto: any): ListGoalsRequestFilters;
|
|
157
|
+
constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
|
|
148
158
|
toApiJson(): object;
|
|
149
159
|
}
|
|
150
160
|
export declare class ListAllAssistantsAssociatedToConnectionRequestFilters implements i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
@@ -153,6 +163,12 @@ export declare class ListAllAssistantsAssociatedToConnectionRequestFilters imple
|
|
|
153
163
|
constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface);
|
|
154
164
|
toApiJson(): object;
|
|
155
165
|
}
|
|
166
|
+
export declare class ListFunctionRequestFilters implements i.ListFunctionRequestFiltersInterface {
|
|
167
|
+
namespace: Namespace;
|
|
168
|
+
static fromProto(proto: any): ListFunctionRequestFilters;
|
|
169
|
+
constructor(kwargs?: i.ListFunctionRequestFiltersInterface);
|
|
170
|
+
toApiJson(): object;
|
|
171
|
+
}
|
|
156
172
|
export declare class ListAssistantRequestFilters implements i.ListAssistantRequestFiltersInterface {
|
|
157
173
|
namespace: Namespace;
|
|
158
174
|
type: e.AssistantType;
|
|
@@ -160,18 +176,17 @@ export declare class ListAssistantRequestFilters implements i.ListAssistantReque
|
|
|
160
176
|
constructor(kwargs?: i.ListAssistantRequestFiltersInterface);
|
|
161
177
|
toApiJson(): object;
|
|
162
178
|
}
|
|
163
|
-
export declare class
|
|
179
|
+
export declare class ListPromptModuleRequestFilters implements i.ListPromptModuleRequestFiltersInterface {
|
|
164
180
|
namespace: Namespace;
|
|
165
|
-
static fromProto(proto: any):
|
|
166
|
-
constructor(kwargs?: i.
|
|
181
|
+
static fromProto(proto: any): ListPromptModuleRequestFilters;
|
|
182
|
+
constructor(kwargs?: i.ListPromptModuleRequestFiltersInterface);
|
|
167
183
|
toApiJson(): object;
|
|
168
184
|
}
|
|
169
|
-
export declare class
|
|
185
|
+
export declare class ListConnectionsRequestFilters implements i.ListConnectionsRequestFiltersInterface {
|
|
170
186
|
namespace: Namespace;
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
|
|
187
|
+
assistantType: e.AssistantType;
|
|
188
|
+
static fromProto(proto: any): ListConnectionsRequestFilters;
|
|
189
|
+
constructor(kwargs?: i.ListConnectionsRequestFiltersInterface);
|
|
175
190
|
toApiJson(): object;
|
|
176
191
|
}
|
|
177
192
|
export declare class GenerateChatAnswerRequest implements i.GenerateChatAnswerRequestInterface {
|
|
@@ -541,10 +556,12 @@ export declare class ListPromptVersionsResponse implements i.ListPromptVersionsR
|
|
|
541
556
|
constructor(kwargs?: i.ListPromptVersionsResponseInterface);
|
|
542
557
|
toApiJson(): object;
|
|
543
558
|
}
|
|
544
|
-
export declare class
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
559
|
+
export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatAnswerRequestOptionsInterface {
|
|
560
|
+
includeAllCitations: boolean;
|
|
561
|
+
enableAsyncFunctions: boolean;
|
|
562
|
+
maxTokens: number;
|
|
563
|
+
static fromProto(proto: any): GenerateChatAnswerRequestOptions;
|
|
564
|
+
constructor(kwargs?: i.GenerateChatAnswerRequestOptionsInterface);
|
|
548
565
|
toApiJson(): object;
|
|
549
566
|
}
|
|
550
567
|
export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantRequestOptionsInterface {
|
|
@@ -553,12 +570,10 @@ export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantR
|
|
|
553
570
|
constructor(kwargs?: i.UpsertAssistantRequestOptionsInterface);
|
|
554
571
|
toApiJson(): object;
|
|
555
572
|
}
|
|
556
|
-
export declare class
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
static fromProto(proto: any): GenerateChatAnswerRequestOptions;
|
|
561
|
-
constructor(kwargs?: i.GenerateChatAnswerRequestOptionsInterface);
|
|
573
|
+
export declare class CreatePromptModuleVersionRequestOptions implements i.CreatePromptModuleVersionRequestOptionsInterface {
|
|
574
|
+
shouldDeploy: boolean;
|
|
575
|
+
static fromProto(proto: any): CreatePromptModuleVersionRequestOptions;
|
|
576
|
+
constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
|
|
562
577
|
toApiJson(): object;
|
|
563
578
|
}
|
|
564
579
|
export declare class SetAssistantConnectionsRequest implements i.SetAssistantConnectionsRequestInterface {
|
|
@@ -8,4 +8,4 @@ export { Connection, ConnectionKey, } from './connection';
|
|
|
8
8
|
export { ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatMessage, ChatUserInfo, } from './answer';
|
|
9
9
|
export { Access, } from './annotations';
|
|
10
10
|
export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
|
|
11
|
-
export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest,
|
|
11
|
+
export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListConnectionsRequestFilters, ListAllAssistantsAssociatedToConnectionRequestFilters, ListFunctionRequestFilters, ListGoalsRequestFilters, ListPromptModuleRequestFilters, ListAssistantRequestFilters, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetConnectionRequest, GetConnectionResponse, GetDeployedPromptModuleVersionRequest, GetDeployedPromptModuleVersionResponse, GetDeployedPromptVersionRequest, GetDeployedPromptVersionResponse, GetFunctionRequest, GetFunctionResponse, GetGoalRequest, GetGoalResponse, GetHydratedDeployedPromptModuleVersionRequest, GetHydratedDeployedPromptModuleVersionResponse, GetMultiDeployedPromptVersionRequest, GetMultiDeployedPromptVersionResponse, GetMultiFunctionRequest, GetMultiFunctionResponse, GetMultiGoalRequest, GetMultiGoalResponse, GetMultiHydratedDeployedPromptModuleVersionRequest, GetMultiHydratedDeployedPromptModuleVersionResponse, GetPromptModuleRequest, GetPromptModuleResponse, GetPromptModuleVersionRequest, GetPromptModuleVersionResponse, GetPromptRequest, GetPromptResponse, GetPromptVersionRequest, GetPromptVersionResponse, GoalsDisabledForAccountGroupRequest, GoalsDisabledForAccountGroupResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListConnectionsRequest, ListConnectionsResponse, ListFunctionRequest, ListFunctionResponse, ListGoalsRequest, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, GenerateChatAnswerRequestOptions, UpsertAssistantRequestOptions, CreatePromptModuleVersionRequestOptions, SetAssistantConnectionsRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, } from './api';
|