@vendasta/ai-assistants 0.45.0 → 0.46.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/function.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +159 -87
- package/esm2020/lib/_internal/objects/function.mjs +4 -1
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/fesm2015/vendasta-ai-assistants.mjs +167 -87
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +167 -87
- 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 +26 -16
- package/lib/_internal/interfaces/function.interface.d.ts +1 -0
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/objects/api.d.ts +56 -37
- package/lib/_internal/objects/function.d.ts +1 -0
- package/lib/_internal/objects/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CreateAssistantRequest, CreateAssistantResponse, DeleteAssistantRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsResponse, SetAssistantConnectionsRequest, UpdateAssistantRequest, UpsertAssistantRequest, UpsertAssistantResponse } from './objects/';
|
|
2
|
-
import { BuildDefaultAssistantRequestInterface, CreateAssistantRequestInterface, DeleteAssistantRequestInterface, ExecuteFunctionRequestInterface, GenerateChatAnswerRequestInterface, GetAssistantRequestInterface, GetChatAnswerFunctionExecutionJobRequestInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAssistantRequestInterface, ListAvailableModelsRequestInterface, SetAssistantConnectionsRequestInterface, UpdateAssistantRequestInterface, UpsertAssistantRequestInterface } from './interfaces/';
|
|
1
|
+
import { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, CreateAssistantRequest, CreateAssistantResponse, DeleteAssistantRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, GenerateChatAnswerRequest, GenerateChatAnswerResponse, GetAssistantRequest, GetAssistantResponse, GetChatAnswerFunctionExecutionJobRequest, GetChatAnswerFunctionExecutionJobResponse, GetMultiAssistantRequest, GetMultiAssistantResponse, ListAllAssistantsAssociatedToConnectionRequest, ListAllAssistantsAssociatedToConnectionResponse, ListAssistantRequest, ListAssistantResponse, ListAvailableModelsRequest, ListAvailableModelsResponse, SetAssistantConnectionsRequest, UpdateAssistantRequest, UpsertAssistantRequest, UpsertAssistantResponse } from './objects/';
|
|
2
|
+
import { BuildDefaultAssistantRequestInterface, CreateAssistantRequestInterface, DeleteAssistantRequestInterface, ExecuteFunctionRequestInterface, GenerateChatAnswerRequestInterface, GetAssistantRequestInterface, GetChatAnswerFunctionExecutionJobRequestInterface, GetMultiAssistantRequestInterface, ListAllAssistantsAssociatedToConnectionRequestInterface, ListAssistantRequestInterface, ListAvailableModelsRequestInterface, SetAssistantConnectionsRequestInterface, UpdateAssistantRequestInterface, 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";
|
|
@@ -12,6 +12,7 @@ export declare class AssistantApiService {
|
|
|
12
12
|
createAssistant(r: CreateAssistantRequest | CreateAssistantRequestInterface): Observable<CreateAssistantResponse>;
|
|
13
13
|
updateAssistant(r: UpdateAssistantRequest | UpdateAssistantRequestInterface): Observable<HttpResponse<null>>;
|
|
14
14
|
getAssistant(r: GetAssistantRequest | GetAssistantRequestInterface): Observable<GetAssistantResponse>;
|
|
15
|
+
getMultiAssistant(r: GetMultiAssistantRequest | GetMultiAssistantRequestInterface): Observable<GetMultiAssistantResponse>;
|
|
15
16
|
buildDefaultAssistant(r: BuildDefaultAssistantRequest | BuildDefaultAssistantRequestInterface): Observable<BuildDefaultAssistantResponse>;
|
|
16
17
|
deleteAssistant(r: DeleteAssistantRequest | DeleteAssistantRequestInterface): Observable<HttpResponse<null>>;
|
|
17
18
|
listAssistant(r: ListAssistantRequest | ListAssistantRequestInterface): Observable<ListAssistantResponse>;
|
|
@@ -99,6 +99,13 @@ export interface ExecuteFunctionResponseInterface {
|
|
|
99
99
|
output?: string;
|
|
100
100
|
metadata?: KeyValuePairInterface[];
|
|
101
101
|
}
|
|
102
|
+
export interface ListPromptModuleRequestFiltersInterface {
|
|
103
|
+
namespace?: NamespaceInterface;
|
|
104
|
+
}
|
|
105
|
+
export interface ListFunctionRequestFiltersInterface {
|
|
106
|
+
namespace?: NamespaceInterface;
|
|
107
|
+
namespaces?: NamespaceInterface[];
|
|
108
|
+
}
|
|
102
109
|
export interface ListConnectionsRequestFiltersInterface {
|
|
103
110
|
namespace?: NamespaceInterface;
|
|
104
111
|
assistantType?: e.AssistantType;
|
|
@@ -110,23 +117,16 @@ export interface ListAvailableModelsRequestFiltersInterface {
|
|
|
110
117
|
export interface ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
111
118
|
type?: e.AssistantType;
|
|
112
119
|
}
|
|
113
|
-
export interface ListGoalsRequestFiltersInterface {
|
|
114
|
-
namespace?: NamespaceInterface;
|
|
115
|
-
type?: e.GoalType;
|
|
116
|
-
supportedChannels?: e.GoalChannel[];
|
|
117
|
-
namespaces?: NamespaceInterface[];
|
|
118
|
-
}
|
|
119
120
|
export interface ListAssistantRequestFiltersInterface {
|
|
120
121
|
namespace?: NamespaceInterface;
|
|
121
122
|
type?: e.AssistantType;
|
|
122
123
|
}
|
|
123
|
-
export interface
|
|
124
|
+
export interface ListGoalsRequestFiltersInterface {
|
|
124
125
|
namespace?: NamespaceInterface;
|
|
126
|
+
type?: e.GoalType;
|
|
127
|
+
supportedChannels?: e.GoalChannel[];
|
|
125
128
|
namespaces?: NamespaceInterface[];
|
|
126
129
|
}
|
|
127
|
-
export interface ListPromptModuleRequestFiltersInterface {
|
|
128
|
-
namespace?: NamespaceInterface;
|
|
129
|
-
}
|
|
130
130
|
export interface GenerateChatAnswerRequestInterface {
|
|
131
131
|
connectionKey?: ConnectionKeyInterface;
|
|
132
132
|
chatHistory?: ChatMessageInterface[];
|
|
@@ -201,6 +201,13 @@ export interface GetHydratedDeployedPromptModuleVersionRequestInterface {
|
|
|
201
201
|
export interface GetHydratedDeployedPromptModuleVersionResponseInterface {
|
|
202
202
|
content?: string;
|
|
203
203
|
}
|
|
204
|
+
export interface GetMultiAssistantRequestInterface {
|
|
205
|
+
assistantKeys?: AssistantKeyInterface[];
|
|
206
|
+
options?: GetMultiAssistantRequestOptionsInterface;
|
|
207
|
+
}
|
|
208
|
+
export interface GetMultiAssistantResponseInterface {
|
|
209
|
+
assistants?: AssistantInterface[];
|
|
210
|
+
}
|
|
204
211
|
export interface GetMultiDeployedPromptVersionRequestInterface {
|
|
205
212
|
ids?: string[];
|
|
206
213
|
}
|
|
@@ -345,20 +352,23 @@ export interface ListPromptVersionsResponseInterface {
|
|
|
345
352
|
export interface UpsertAssistantRequestOptionsInterface {
|
|
346
353
|
applyDefaults?: boolean;
|
|
347
354
|
}
|
|
348
|
-
export interface CreateAssistantRequestOptionsInterface {
|
|
349
|
-
applyDefaults?: boolean;
|
|
350
|
-
}
|
|
351
|
-
export interface CreatePromptModuleVersionRequestOptionsInterface {
|
|
352
|
-
shouldDeploy?: boolean;
|
|
353
|
-
}
|
|
354
355
|
export interface GenerateChatAnswerRequestOptionsInterface {
|
|
355
356
|
includeAllCitations?: boolean;
|
|
356
357
|
enableAsyncFunctions?: boolean;
|
|
357
358
|
maxTokens?: number;
|
|
358
359
|
}
|
|
360
|
+
export interface CreatePromptModuleVersionRequestOptionsInterface {
|
|
361
|
+
shouldDeploy?: boolean;
|
|
362
|
+
}
|
|
359
363
|
export interface GetAssistantRequestOptionsInterface {
|
|
360
364
|
skipGoalsHydration?: boolean;
|
|
361
365
|
}
|
|
366
|
+
export interface GetMultiAssistantRequestOptionsInterface {
|
|
367
|
+
skipGoalsHydration?: boolean;
|
|
368
|
+
}
|
|
369
|
+
export interface CreateAssistantRequestOptionsInterface {
|
|
370
|
+
applyDefaults?: boolean;
|
|
371
|
+
}
|
|
362
372
|
export interface SetAssistantConnectionsRequestInterface {
|
|
363
373
|
associationStates?: SetAssistantConnectionsRequestConnectionStateInterface[];
|
|
364
374
|
assistantKey?: AssistantKeyInterface;
|
|
@@ -17,6 +17,7 @@ export interface FunctionInterface {
|
|
|
17
17
|
headers?: FunctionHeaderInterface[];
|
|
18
18
|
managed?: boolean;
|
|
19
19
|
authStrategy?: FunctionAuthStrategyInterface;
|
|
20
|
+
mcpId?: string;
|
|
20
21
|
}
|
|
21
22
|
export interface FunctionAuthStrategyInterface {
|
|
22
23
|
unspecified?: FunctionAuthStrategyUnspecifiedFunctionAuthStrategyInterface;
|
|
@@ -11,4 +11,4 @@ export { ChatAnswerFunctionExecutionJobInterface, ChatAnswerFunctionExecutionJob
|
|
|
11
11
|
export { CancelTestRunRequestInterface, TestResultCitationInterface, DeleteTestCasesRequestInterface, GetTestRunRequestInterface, GetTestRunResponseInterface, ListTestCasesByAssistantRequestInterface, ListTestCasesByAssistantResponseInterface, ListTestRunsByAssistantRequestInterface, ListTestRunsByAssistantResponseInterface, RunTestsRequestInterface, RunTestsResponseInterface, SortOptionsInterface, TestCaseInterface, TestResultInterface, TestRunInterface, UpsertTestCasesRequestInterface, } from './integration-tests.interface';
|
|
12
12
|
export { AccessInterface, MCPOptionsInterface, } from './annotations.interface';
|
|
13
13
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
14
|
-
export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateAssistantRequestInterface, CreateAssistantResponseInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListConnectionsRequestFiltersInterface, ListAvailableModelsRequestFiltersInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface,
|
|
14
|
+
export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateAssistantRequestInterface, CreateAssistantResponseInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListPromptModuleRequestFiltersInterface, ListFunctionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListAvailableModelsRequestFiltersInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListAssistantRequestFiltersInterface, ListGoalsRequestFiltersInterface, 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, CreatePromptModuleVersionRequestOptionsInterface, GetAssistantRequestOptionsInterface, CreateAssistantRequestOptionsInterface, GetMultiAssistantRequestOptionsInterface, UpsertAssistantRequestOptionsInterface, SetAssistantConnectionsRequestInterface, UpdateAssistantRequestInterface, UpdateGoalRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, } from './api.interface';
|
|
@@ -164,6 +164,22 @@ export declare class ExecuteFunctionResponse implements i.ExecuteFunctionRespons
|
|
|
164
164
|
constructor(kwargs?: i.ExecuteFunctionResponseInterface);
|
|
165
165
|
toApiJson(): object;
|
|
166
166
|
}
|
|
167
|
+
export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFiltersInterface {
|
|
168
|
+
namespace: Namespace;
|
|
169
|
+
type: e.GoalType;
|
|
170
|
+
supportedChannels: e.GoalChannel[];
|
|
171
|
+
namespaces: Namespace[];
|
|
172
|
+
static fromProto(proto: any): ListGoalsRequestFilters;
|
|
173
|
+
constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
|
|
174
|
+
toApiJson(): object;
|
|
175
|
+
}
|
|
176
|
+
export declare class ListFunctionRequestFilters implements i.ListFunctionRequestFiltersInterface {
|
|
177
|
+
namespace: Namespace;
|
|
178
|
+
namespaces: Namespace[];
|
|
179
|
+
static fromProto(proto: any): ListFunctionRequestFilters;
|
|
180
|
+
constructor(kwargs?: i.ListFunctionRequestFiltersInterface);
|
|
181
|
+
toApiJson(): object;
|
|
182
|
+
}
|
|
167
183
|
export declare class ListConnectionsRequestFilters implements i.ListConnectionsRequestFiltersInterface {
|
|
168
184
|
namespace: Namespace;
|
|
169
185
|
assistantType: e.AssistantType;
|
|
@@ -178,19 +194,10 @@ export declare class ListAvailableModelsRequestFilters implements i.ListAvailabl
|
|
|
178
194
|
constructor(kwargs?: i.ListAvailableModelsRequestFiltersInterface);
|
|
179
195
|
toApiJson(): object;
|
|
180
196
|
}
|
|
181
|
-
export declare class
|
|
182
|
-
type: e.AssistantType;
|
|
183
|
-
static fromProto(proto: any): ListAllAssistantsAssociatedToConnectionRequestFilters;
|
|
184
|
-
constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface);
|
|
185
|
-
toApiJson(): object;
|
|
186
|
-
}
|
|
187
|
-
export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFiltersInterface {
|
|
197
|
+
export declare class ListPromptModuleRequestFilters implements i.ListPromptModuleRequestFiltersInterface {
|
|
188
198
|
namespace: Namespace;
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
namespaces: Namespace[];
|
|
192
|
-
static fromProto(proto: any): ListGoalsRequestFilters;
|
|
193
|
-
constructor(kwargs?: i.ListGoalsRequestFiltersInterface);
|
|
199
|
+
static fromProto(proto: any): ListPromptModuleRequestFilters;
|
|
200
|
+
constructor(kwargs?: i.ListPromptModuleRequestFiltersInterface);
|
|
194
201
|
toApiJson(): object;
|
|
195
202
|
}
|
|
196
203
|
export declare class ListAssistantRequestFilters implements i.ListAssistantRequestFiltersInterface {
|
|
@@ -200,17 +207,10 @@ export declare class ListAssistantRequestFilters implements i.ListAssistantReque
|
|
|
200
207
|
constructor(kwargs?: i.ListAssistantRequestFiltersInterface);
|
|
201
208
|
toApiJson(): object;
|
|
202
209
|
}
|
|
203
|
-
export declare class
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
constructor(kwargs?: i.ListFunctionRequestFiltersInterface);
|
|
208
|
-
toApiJson(): object;
|
|
209
|
-
}
|
|
210
|
-
export declare class ListPromptModuleRequestFilters implements i.ListPromptModuleRequestFiltersInterface {
|
|
211
|
-
namespace: Namespace;
|
|
212
|
-
static fromProto(proto: any): ListPromptModuleRequestFilters;
|
|
213
|
-
constructor(kwargs?: i.ListPromptModuleRequestFiltersInterface);
|
|
210
|
+
export declare class ListAllAssistantsAssociatedToConnectionRequestFilters implements i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
211
|
+
type: e.AssistantType;
|
|
212
|
+
static fromProto(proto: any): ListAllAssistantsAssociatedToConnectionRequestFilters;
|
|
213
|
+
constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface);
|
|
214
214
|
toApiJson(): object;
|
|
215
215
|
}
|
|
216
216
|
export declare class GenerateChatAnswerRequest implements i.GenerateChatAnswerRequestInterface {
|
|
@@ -341,6 +341,19 @@ export declare class GetHydratedDeployedPromptModuleVersionResponse implements i
|
|
|
341
341
|
constructor(kwargs?: i.GetHydratedDeployedPromptModuleVersionResponseInterface);
|
|
342
342
|
toApiJson(): object;
|
|
343
343
|
}
|
|
344
|
+
export declare class GetMultiAssistantRequest implements i.GetMultiAssistantRequestInterface {
|
|
345
|
+
assistantKeys: AssistantKey[];
|
|
346
|
+
options: GetMultiAssistantRequestOptions;
|
|
347
|
+
static fromProto(proto: any): GetMultiAssistantRequest;
|
|
348
|
+
constructor(kwargs?: i.GetMultiAssistantRequestInterface);
|
|
349
|
+
toApiJson(): object;
|
|
350
|
+
}
|
|
351
|
+
export declare class GetMultiAssistantResponse implements i.GetMultiAssistantResponseInterface {
|
|
352
|
+
assistants: Assistant[];
|
|
353
|
+
static fromProto(proto: any): GetMultiAssistantResponse;
|
|
354
|
+
constructor(kwargs?: i.GetMultiAssistantResponseInterface);
|
|
355
|
+
toApiJson(): object;
|
|
356
|
+
}
|
|
344
357
|
export declare class GetMultiDeployedPromptVersionRequest implements i.GetMultiDeployedPromptVersionRequestInterface {
|
|
345
358
|
ids: string[];
|
|
346
359
|
static fromProto(proto: any): GetMultiDeployedPromptVersionRequest;
|
|
@@ -596,10 +609,16 @@ export declare class ListPromptVersionsResponse implements i.ListPromptVersionsR
|
|
|
596
609
|
constructor(kwargs?: i.ListPromptVersionsResponseInterface);
|
|
597
610
|
toApiJson(): object;
|
|
598
611
|
}
|
|
599
|
-
export declare class
|
|
600
|
-
|
|
601
|
-
static fromProto(proto: any):
|
|
602
|
-
constructor(kwargs?: i.
|
|
612
|
+
export declare class CreatePromptModuleVersionRequestOptions implements i.CreatePromptModuleVersionRequestOptionsInterface {
|
|
613
|
+
shouldDeploy: boolean;
|
|
614
|
+
static fromProto(proto: any): CreatePromptModuleVersionRequestOptions;
|
|
615
|
+
constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
|
|
616
|
+
toApiJson(): object;
|
|
617
|
+
}
|
|
618
|
+
export declare class GetAssistantRequestOptions implements i.GetAssistantRequestOptionsInterface {
|
|
619
|
+
skipGoalsHydration: boolean;
|
|
620
|
+
static fromProto(proto: any): GetAssistantRequestOptions;
|
|
621
|
+
constructor(kwargs?: i.GetAssistantRequestOptionsInterface);
|
|
603
622
|
toApiJson(): object;
|
|
604
623
|
}
|
|
605
624
|
export declare class CreateAssistantRequestOptions implements i.CreateAssistantRequestOptionsInterface {
|
|
@@ -608,10 +627,16 @@ export declare class CreateAssistantRequestOptions implements i.CreateAssistantR
|
|
|
608
627
|
constructor(kwargs?: i.CreateAssistantRequestOptionsInterface);
|
|
609
628
|
toApiJson(): object;
|
|
610
629
|
}
|
|
611
|
-
export declare class
|
|
612
|
-
|
|
613
|
-
static fromProto(proto: any):
|
|
614
|
-
constructor(kwargs?: i.
|
|
630
|
+
export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantRequestOptionsInterface {
|
|
631
|
+
applyDefaults: boolean;
|
|
632
|
+
static fromProto(proto: any): UpsertAssistantRequestOptions;
|
|
633
|
+
constructor(kwargs?: i.UpsertAssistantRequestOptionsInterface);
|
|
634
|
+
toApiJson(): object;
|
|
635
|
+
}
|
|
636
|
+
export declare class GetMultiAssistantRequestOptions implements i.GetMultiAssistantRequestOptionsInterface {
|
|
637
|
+
skipGoalsHydration: boolean;
|
|
638
|
+
static fromProto(proto: any): GetMultiAssistantRequestOptions;
|
|
639
|
+
constructor(kwargs?: i.GetMultiAssistantRequestOptionsInterface);
|
|
615
640
|
toApiJson(): object;
|
|
616
641
|
}
|
|
617
642
|
export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatAnswerRequestOptionsInterface {
|
|
@@ -622,12 +647,6 @@ export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatA
|
|
|
622
647
|
constructor(kwargs?: i.GenerateChatAnswerRequestOptionsInterface);
|
|
623
648
|
toApiJson(): object;
|
|
624
649
|
}
|
|
625
|
-
export declare class GetAssistantRequestOptions implements i.GetAssistantRequestOptionsInterface {
|
|
626
|
-
skipGoalsHydration: boolean;
|
|
627
|
-
static fromProto(proto: any): GetAssistantRequestOptions;
|
|
628
|
-
constructor(kwargs?: i.GetAssistantRequestOptionsInterface);
|
|
629
|
-
toApiJson(): object;
|
|
630
|
-
}
|
|
631
650
|
export declare class SetAssistantConnectionsRequest implements i.SetAssistantConnectionsRequestInterface {
|
|
632
651
|
associationStates: SetAssistantConnectionsRequestConnectionState[];
|
|
633
652
|
assistantKey: AssistantKey;
|
|
@@ -22,6 +22,7 @@ export declare class Function implements i.FunctionInterface {
|
|
|
22
22
|
headers: FunctionHeader[];
|
|
23
23
|
managed: boolean;
|
|
24
24
|
authStrategy: FunctionAuthStrategy;
|
|
25
|
+
mcpId: string;
|
|
25
26
|
static fromProto(proto: any): Function;
|
|
26
27
|
constructor(kwargs?: i.FunctionInterface);
|
|
27
28
|
toApiJson(): object;
|
|
@@ -11,4 +11,4 @@ export { ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, C
|
|
|
11
11
|
export { CancelTestRunRequest, TestResultCitation, DeleteTestCasesRequest, GetTestRunRequest, GetTestRunResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, RunTestsRequest, RunTestsResponse, SortOptions, TestCase, TestResult, TestRun, UpsertTestCasesRequest, } from './integration-tests';
|
|
12
12
|
export { Access, MCPOptions, } from './annotations';
|
|
13
13
|
export { FieldMask, } from './field-mask';
|
|
14
|
-
export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateAssistantRequest, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListConnectionsRequestFilters, ListAvailableModelsRequestFilters,
|
|
14
|
+
export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateAssistantRequest, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListAllAssistantsAssociatedToConnectionRequestFilters, ListFunctionRequestFilters, ListConnectionsRequestFilters, ListAvailableModelsRequestFilters, ListGoalsRequestFilters, ListAssistantRequestFilters, ListPromptModuleRequestFilters, 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, CreateAssistantRequestOptions, UpsertAssistantRequestOptions, GenerateChatAnswerRequestOptions, CreatePromptModuleVersionRequestOptions, GetMultiAssistantRequestOptions, GetAssistantRequestOptions, SetAssistantConnectionsRequest, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, } from './api';
|