@vendasta/ai-assistants 0.41.0 → 0.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/_internal/enums/assistant.enum.mjs +2 -1
- package/esm2020/lib/_internal/interfaces/annotations.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/assistant.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/annotations.mjs +21 -1
- package/esm2020/lib/_internal/objects/api.mjs +77 -71
- package/esm2020/lib/_internal/objects/assistant.mjs +27 -1
- package/esm2020/lib/_internal/objects/index.mjs +4 -4
- package/fesm2015/vendasta-ai-assistants.mjs +124 -71
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +124 -71
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/assistant.enum.d.ts +2 -1
- package/lib/_internal/interfaces/annotations.interface.d.ts +3 -0
- package/lib/_internal/interfaces/api.interface.d.ts +17 -16
- package/lib/_internal/interfaces/assistant.interface.d.ts +4 -0
- package/lib/_internal/interfaces/index.d.ts +3 -3
- package/lib/_internal/objects/annotations.d.ts +6 -0
- package/lib/_internal/objects/api.d.ts +36 -35
- package/lib/_internal/objects/assistant.d.ts +7 -0
- package/lib/_internal/objects/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -99,20 +99,17 @@ export interface ExecuteFunctionResponseInterface {
|
|
|
99
99
|
output?: string;
|
|
100
100
|
metadata?: KeyValuePairInterface[];
|
|
101
101
|
}
|
|
102
|
-
export interface ListPromptModuleRequestFiltersInterface {
|
|
103
|
-
namespace?: NamespaceInterface;
|
|
104
|
-
}
|
|
105
102
|
export interface ListConnectionsRequestFiltersInterface {
|
|
106
103
|
namespace?: NamespaceInterface;
|
|
107
104
|
assistantType?: e.AssistantType;
|
|
108
105
|
}
|
|
109
|
-
export interface ListFunctionRequestFiltersInterface {
|
|
110
|
-
namespace?: NamespaceInterface;
|
|
111
|
-
}
|
|
112
106
|
export interface ListAvailableModelsRequestFiltersInterface {
|
|
113
107
|
vendor?: e.ModelVendor[];
|
|
114
108
|
type?: e.ModelType[];
|
|
115
109
|
}
|
|
110
|
+
export interface ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
111
|
+
type?: e.AssistantType;
|
|
112
|
+
}
|
|
116
113
|
export interface ListGoalsRequestFiltersInterface {
|
|
117
114
|
namespace?: NamespaceInterface;
|
|
118
115
|
type?: e.GoalType;
|
|
@@ -123,8 +120,12 @@ export interface ListAssistantRequestFiltersInterface {
|
|
|
123
120
|
namespace?: NamespaceInterface;
|
|
124
121
|
type?: e.AssistantType;
|
|
125
122
|
}
|
|
126
|
-
export interface
|
|
127
|
-
|
|
123
|
+
export interface ListFunctionRequestFiltersInterface {
|
|
124
|
+
namespace?: NamespaceInterface;
|
|
125
|
+
namespaces?: NamespaceInterface[];
|
|
126
|
+
}
|
|
127
|
+
export interface ListPromptModuleRequestFiltersInterface {
|
|
128
|
+
namespace?: NamespaceInterface;
|
|
128
129
|
}
|
|
129
130
|
export interface GenerateChatAnswerRequestInterface {
|
|
130
131
|
connectionKey?: ConnectionKeyInterface;
|
|
@@ -341,22 +342,22 @@ export interface ListPromptVersionsResponseInterface {
|
|
|
341
342
|
promptVersions?: PromptVersionInterface[];
|
|
342
343
|
metadata?: PagedResponseMetadataInterface;
|
|
343
344
|
}
|
|
344
|
-
export interface GetAssistantRequestOptionsInterface {
|
|
345
|
-
skipGoalsHydration?: boolean;
|
|
346
|
-
}
|
|
347
345
|
export interface UpsertAssistantRequestOptionsInterface {
|
|
348
346
|
applyDefaults?: boolean;
|
|
349
347
|
}
|
|
348
|
+
export interface CreateAssistantRequestOptionsInterface {
|
|
349
|
+
applyDefaults?: boolean;
|
|
350
|
+
}
|
|
351
|
+
export interface CreatePromptModuleVersionRequestOptionsInterface {
|
|
352
|
+
shouldDeploy?: boolean;
|
|
353
|
+
}
|
|
350
354
|
export interface GenerateChatAnswerRequestOptionsInterface {
|
|
351
355
|
includeAllCitations?: boolean;
|
|
352
356
|
enableAsyncFunctions?: boolean;
|
|
353
357
|
maxTokens?: number;
|
|
354
358
|
}
|
|
355
|
-
export interface
|
|
356
|
-
|
|
357
|
-
}
|
|
358
|
-
export interface CreateAssistantRequestOptionsInterface {
|
|
359
|
-
applyDefaults?: boolean;
|
|
359
|
+
export interface GetAssistantRequestOptionsInterface {
|
|
360
|
+
skipGoalsHydration?: boolean;
|
|
360
361
|
}
|
|
361
362
|
export interface SetAssistantConnectionsRequestInterface {
|
|
362
363
|
associationStates?: SetAssistantConnectionsRequestConnectionStateInterface[];
|
|
@@ -29,6 +29,9 @@ export interface ConfigurableGoalInterface {
|
|
|
29
29
|
export interface DeepgramConfigInterface {
|
|
30
30
|
voice?: string;
|
|
31
31
|
}
|
|
32
|
+
export interface ElevenLabsConfigInterface {
|
|
33
|
+
voice?: string;
|
|
34
|
+
}
|
|
32
35
|
export interface ConfigInboxConfigInterface {
|
|
33
36
|
leadCaptureEnabled?: boolean;
|
|
34
37
|
additionalInstructions?: string;
|
|
@@ -36,6 +39,7 @@ export interface ConfigInboxConfigInterface {
|
|
|
36
39
|
export interface ModelConfigInterface {
|
|
37
40
|
openaiRealtimeConfig?: OpenAIRealtimeConfigInterface;
|
|
38
41
|
deepgramConfig?: DeepgramConfigInterface;
|
|
42
|
+
elevenLabsConfig?: ElevenLabsConfigInterface;
|
|
39
43
|
}
|
|
40
44
|
export interface OpenAIRealtimeConfigInterface {
|
|
41
45
|
voice?: string;
|
|
@@ -4,11 +4,11 @@ export { PromptInterface, PromptModuleInterface, PromptModuleKeyInterface, Promp
|
|
|
4
4
|
export { GoalInterface, GoalKeyInterface, } from './goal.interface';
|
|
5
5
|
export { KeyValuePairInterface, } from './common.interface';
|
|
6
6
|
export { ModelInterface, } from './model.interface';
|
|
7
|
-
export { AssistantInterface, AssistantKeyInterface, ConfigInterface, ConfigurableGoalInterface, DeepgramConfigInterface, ConfigInboxConfigInterface, ModelConfigInterface, OpenAIRealtimeConfigInterface, OpenAIRealtimeConfigTurnDetectionInterface, ConfigVoiceConfigInterface, } from './assistant.interface';
|
|
7
|
+
export { AssistantInterface, AssistantKeyInterface, ConfigInterface, ConfigurableGoalInterface, DeepgramConfigInterface, ElevenLabsConfigInterface, ConfigInboxConfigInterface, ModelConfigInterface, OpenAIRealtimeConfigInterface, OpenAIRealtimeConfigTurnDetectionInterface, ConfigVoiceConfigInterface, } from './assistant.interface';
|
|
8
8
|
export { ConnectionInterface, ConnectionKeyInterface, } from './connection.interface';
|
|
9
9
|
export { ChatAnswerFunctionExecutionJobInterface, ChatAnswerFunctionExecutionJobResultInterface, ChatMessageInterface, ChatUserInfoInterface, ContextInfoInterface, } from './answer.interface';
|
|
10
10
|
export { PagedRequestOptionsInterface, PagedResponseMetadataInterface, } from './paging.interface';
|
|
11
11
|
export { CancelTestRunRequestInterface, TestResultCitationInterface, DeleteTestCasesRequestInterface, GetTestRunRequestInterface, GetTestRunResponseInterface, ListTestCasesByAssistantRequestInterface, ListTestCasesByAssistantResponseInterface, ListTestRunsByAssistantRequestInterface, ListTestRunsByAssistantResponseInterface, RunTestsRequestInterface, RunTestsResponseInterface, SortOptionsInterface, TestCaseInterface, TestResultInterface, TestRunInterface, UpsertTestCasesRequestInterface, } from './integration-tests.interface';
|
|
12
|
-
export { AccessInterface, } from './annotations.interface';
|
|
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,
|
|
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, ListGoalsRequestFiltersInterface, ListAssistantRequestFiltersInterface, ListFunctionRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, 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, ListAvailableModelsRequestInterface, ListAvailableModelsResponseInterface, ListConnectionsRequestInterface, ListConnectionsResponseInterface, ListFunctionRequestInterface, ListFunctionResponseInterface, ListGoalsRequestInterface, ListGoalsResponseInterface, ListPromptModuleRequestInterface, ListPromptModuleResponseInterface, ListPromptModuleVersionsRequestInterface, ListPromptModuleVersionsResponseInterface, ListPromptRequestInterface, ListPromptResponseInterface, ListPromptVersionsRequestInterface, ListPromptVersionsResponseInterface, UpsertAssistantRequestOptionsInterface, CreateAssistantRequestOptionsInterface, CreatePromptModuleVersionRequestOptionsInterface, GenerateChatAnswerRequestOptionsInterface, GetAssistantRequestOptionsInterface, SetAssistantConnectionsRequestInterface, UpdateAssistantRequestInterface, UpdateGoalRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, } from './api.interface';
|
|
@@ -7,3 +7,9 @@ export declare class Access implements i.AccessInterface {
|
|
|
7
7
|
constructor(kwargs?: i.AccessInterface);
|
|
8
8
|
toApiJson(): object;
|
|
9
9
|
}
|
|
10
|
+
export declare class MCPOptions implements i.MCPOptionsInterface {
|
|
11
|
+
serverId: string[];
|
|
12
|
+
static fromProto(proto: any): MCPOptions;
|
|
13
|
+
constructor(kwargs?: i.MCPOptionsInterface);
|
|
14
|
+
toApiJson(): object;
|
|
15
|
+
}
|
|
@@ -164,12 +164,6 @@ export declare class ExecuteFunctionResponse implements i.ExecuteFunctionRespons
|
|
|
164
164
|
constructor(kwargs?: i.ExecuteFunctionResponseInterface);
|
|
165
165
|
toApiJson(): object;
|
|
166
166
|
}
|
|
167
|
-
export declare class ListAllAssistantsAssociatedToConnectionRequestFilters implements i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
168
|
-
type: e.AssistantType;
|
|
169
|
-
static fromProto(proto: any): ListAllAssistantsAssociatedToConnectionRequestFilters;
|
|
170
|
-
constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface);
|
|
171
|
-
toApiJson(): object;
|
|
172
|
-
}
|
|
173
167
|
export declare class ListConnectionsRequestFilters implements i.ListConnectionsRequestFiltersInterface {
|
|
174
168
|
namespace: Namespace;
|
|
175
169
|
assistantType: e.AssistantType;
|
|
@@ -177,16 +171,17 @@ export declare class ListConnectionsRequestFilters implements i.ListConnectionsR
|
|
|
177
171
|
constructor(kwargs?: i.ListConnectionsRequestFiltersInterface);
|
|
178
172
|
toApiJson(): object;
|
|
179
173
|
}
|
|
180
|
-
export declare class
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
174
|
+
export declare class ListAvailableModelsRequestFilters implements i.ListAvailableModelsRequestFiltersInterface {
|
|
175
|
+
vendor: e.ModelVendor[];
|
|
176
|
+
type: e.ModelType[];
|
|
177
|
+
static fromProto(proto: any): ListAvailableModelsRequestFilters;
|
|
178
|
+
constructor(kwargs?: i.ListAvailableModelsRequestFiltersInterface);
|
|
184
179
|
toApiJson(): object;
|
|
185
180
|
}
|
|
186
|
-
export declare class
|
|
187
|
-
|
|
188
|
-
static fromProto(proto: any):
|
|
189
|
-
constructor(kwargs?: i.
|
|
181
|
+
export declare class ListAllAssistantsAssociatedToConnectionRequestFilters implements i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface {
|
|
182
|
+
type: e.AssistantType;
|
|
183
|
+
static fromProto(proto: any): ListAllAssistantsAssociatedToConnectionRequestFilters;
|
|
184
|
+
constructor(kwargs?: i.ListAllAssistantsAssociatedToConnectionRequestFiltersInterface);
|
|
190
185
|
toApiJson(): object;
|
|
191
186
|
}
|
|
192
187
|
export declare class ListGoalsRequestFilters implements i.ListGoalsRequestFiltersInterface {
|
|
@@ -205,11 +200,17 @@ export declare class ListAssistantRequestFilters implements i.ListAssistantReque
|
|
|
205
200
|
constructor(kwargs?: i.ListAssistantRequestFiltersInterface);
|
|
206
201
|
toApiJson(): object;
|
|
207
202
|
}
|
|
208
|
-
export declare class
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
static fromProto(proto: any):
|
|
212
|
-
constructor(kwargs?: i.
|
|
203
|
+
export declare class ListFunctionRequestFilters implements i.ListFunctionRequestFiltersInterface {
|
|
204
|
+
namespace: Namespace;
|
|
205
|
+
namespaces: Namespace[];
|
|
206
|
+
static fromProto(proto: any): ListFunctionRequestFilters;
|
|
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);
|
|
213
214
|
toApiJson(): object;
|
|
214
215
|
}
|
|
215
216
|
export declare class GenerateChatAnswerRequest implements i.GenerateChatAnswerRequestInterface {
|
|
@@ -595,12 +596,10 @@ export declare class ListPromptVersionsResponse implements i.ListPromptVersionsR
|
|
|
595
596
|
constructor(kwargs?: i.ListPromptVersionsResponseInterface);
|
|
596
597
|
toApiJson(): object;
|
|
597
598
|
}
|
|
598
|
-
export declare class
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
static fromProto(proto: any): GenerateChatAnswerRequestOptions;
|
|
603
|
-
constructor(kwargs?: i.GenerateChatAnswerRequestOptionsInterface);
|
|
599
|
+
export declare class UpsertAssistantRequestOptions implements i.UpsertAssistantRequestOptionsInterface {
|
|
600
|
+
applyDefaults: boolean;
|
|
601
|
+
static fromProto(proto: any): UpsertAssistantRequestOptions;
|
|
602
|
+
constructor(kwargs?: i.UpsertAssistantRequestOptionsInterface);
|
|
604
603
|
toApiJson(): object;
|
|
605
604
|
}
|
|
606
605
|
export declare class CreateAssistantRequestOptions implements i.CreateAssistantRequestOptionsInterface {
|
|
@@ -609,22 +608,24 @@ export declare class CreateAssistantRequestOptions implements i.CreateAssistantR
|
|
|
609
608
|
constructor(kwargs?: i.CreateAssistantRequestOptionsInterface);
|
|
610
609
|
toApiJson(): object;
|
|
611
610
|
}
|
|
612
|
-
export declare class GetAssistantRequestOptions implements i.GetAssistantRequestOptionsInterface {
|
|
613
|
-
skipGoalsHydration: boolean;
|
|
614
|
-
static fromProto(proto: any): GetAssistantRequestOptions;
|
|
615
|
-
constructor(kwargs?: i.GetAssistantRequestOptionsInterface);
|
|
616
|
-
toApiJson(): object;
|
|
617
|
-
}
|
|
618
611
|
export declare class CreatePromptModuleVersionRequestOptions implements i.CreatePromptModuleVersionRequestOptionsInterface {
|
|
619
612
|
shouldDeploy: boolean;
|
|
620
613
|
static fromProto(proto: any): CreatePromptModuleVersionRequestOptions;
|
|
621
614
|
constructor(kwargs?: i.CreatePromptModuleVersionRequestOptionsInterface);
|
|
622
615
|
toApiJson(): object;
|
|
623
616
|
}
|
|
624
|
-
export declare class
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
617
|
+
export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatAnswerRequestOptionsInterface {
|
|
618
|
+
includeAllCitations: boolean;
|
|
619
|
+
enableAsyncFunctions: boolean;
|
|
620
|
+
maxTokens: number;
|
|
621
|
+
static fromProto(proto: any): GenerateChatAnswerRequestOptions;
|
|
622
|
+
constructor(kwargs?: i.GenerateChatAnswerRequestOptionsInterface);
|
|
623
|
+
toApiJson(): object;
|
|
624
|
+
}
|
|
625
|
+
export declare class GetAssistantRequestOptions implements i.GetAssistantRequestOptionsInterface {
|
|
626
|
+
skipGoalsHydration: boolean;
|
|
627
|
+
static fromProto(proto: any): GetAssistantRequestOptions;
|
|
628
|
+
constructor(kwargs?: i.GetAssistantRequestOptionsInterface);
|
|
628
629
|
toApiJson(): object;
|
|
629
630
|
}
|
|
630
631
|
export declare class SetAssistantConnectionsRequest implements i.SetAssistantConnectionsRequestInterface {
|
|
@@ -46,6 +46,12 @@ export declare class DeepgramConfig implements i.DeepgramConfigInterface {
|
|
|
46
46
|
constructor(kwargs?: i.DeepgramConfigInterface);
|
|
47
47
|
toApiJson(): object;
|
|
48
48
|
}
|
|
49
|
+
export declare class ElevenLabsConfig implements i.ElevenLabsConfigInterface {
|
|
50
|
+
voice: string;
|
|
51
|
+
static fromProto(proto: any): ElevenLabsConfig;
|
|
52
|
+
constructor(kwargs?: i.ElevenLabsConfigInterface);
|
|
53
|
+
toApiJson(): object;
|
|
54
|
+
}
|
|
49
55
|
export declare class ConfigInboxConfig implements i.ConfigInboxConfigInterface {
|
|
50
56
|
leadCaptureEnabled: boolean;
|
|
51
57
|
additionalInstructions: string;
|
|
@@ -56,6 +62,7 @@ export declare class ConfigInboxConfig implements i.ConfigInboxConfigInterface {
|
|
|
56
62
|
export declare class ModelConfig implements i.ModelConfigInterface {
|
|
57
63
|
openaiRealtimeConfig: OpenAIRealtimeConfig;
|
|
58
64
|
deepgramConfig: DeepgramConfig;
|
|
65
|
+
elevenLabsConfig: ElevenLabsConfig;
|
|
59
66
|
static fromProto(proto: any): ModelConfig;
|
|
60
67
|
constructor(kwargs?: i.ModelConfigInterface);
|
|
61
68
|
toApiJson(): object;
|
|
@@ -4,11 +4,11 @@ export { Prompt, PromptModule, PromptModuleKey, PromptModuleVersion, PromptVersi
|
|
|
4
4
|
export { Goal, GoalKey, } from './goal';
|
|
5
5
|
export { KeyValuePair, } from './common';
|
|
6
6
|
export { Model, } from './model';
|
|
7
|
-
export { Assistant, AssistantKey, Config, ConfigurableGoal, DeepgramConfig, ConfigInboxConfig, ModelConfig, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, ConfigVoiceConfig, } from './assistant';
|
|
7
|
+
export { Assistant, AssistantKey, Config, ConfigurableGoal, DeepgramConfig, ElevenLabsConfig, ConfigInboxConfig, ModelConfig, OpenAIRealtimeConfig, OpenAIRealtimeConfigTurnDetection, ConfigVoiceConfig, } from './assistant';
|
|
8
8
|
export { Connection, ConnectionKey, } from './connection';
|
|
9
9
|
export { ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatMessage, ChatUserInfo, ContextInfo, } from './answer';
|
|
10
10
|
export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
|
|
11
11
|
export { CancelTestRunRequest, TestResultCitation, DeleteTestCasesRequest, GetTestRunRequest, GetTestRunResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, RunTestsRequest, RunTestsResponse, SortOptions, TestCase, TestResult, TestRun, UpsertTestCasesRequest, } from './integration-tests';
|
|
12
|
-
export { Access, } from './annotations';
|
|
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,
|
|
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, ListAllAssistantsAssociatedToConnectionRequestFilters, ListGoalsRequestFilters, ListAssistantRequestFilters, ListFunctionRequestFilters, ListPromptModuleRequestFilters, 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, ListAvailableModelsRequest, ListAvailableModelsResponse, ListConnectionsRequest, ListConnectionsResponse, ListFunctionRequest, ListFunctionResponse, ListGoalsRequest, ListGoalsResponse, ListPromptModuleRequest, ListPromptModuleResponse, ListPromptModuleVersionsRequest, ListPromptModuleVersionsResponse, ListPromptRequest, ListPromptResponse, ListPromptVersionsRequest, ListPromptVersionsResponse, UpsertAssistantRequestOptions, CreateAssistantRequestOptions, CreatePromptModuleVersionRequestOptions, GenerateChatAnswerRequestOptions, GetAssistantRequestOptions, SetAssistantConnectionsRequest, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, } from './api';
|