@vendasta/ai-assistants 0.37.0 → 0.38.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/api.enum.mjs +18 -0
- package/esm2020/lib/_internal/enums/index.mjs +3 -1
- package/esm2020/lib/_internal/enums/integration-tests.enum.mjs +13 -0
- package/esm2020/lib/_internal/integration-test.api.service.mjs +6 -2
- package/esm2020/lib/_internal/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/integration-tests.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api.mjs +7 -1
- package/esm2020/lib/_internal/objects/index.mjs +2 -2
- package/esm2020/lib/_internal/objects/integration-tests.mjs +63 -1
- package/fesm2015/vendasta-ai-assistants.mjs +103 -1
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +103 -1
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/enums/api.enum.d.ts +10 -0
- package/lib/_internal/enums/index.d.ts +2 -0
- package/lib/_internal/enums/integration-tests.enum.d.ts +5 -0
- package/lib/_internal/integration-test.api.service.d.ts +3 -2
- package/lib/_internal/interfaces/api.interface.d.ts +1 -0
- package/lib/_internal/interfaces/index.d.ts +1 -1
- package/lib/_internal/interfaces/integration-tests.interface.d.ts +11 -0
- package/lib/_internal/objects/api.d.ts +1 -0
- package/lib/_internal/objects/index.d.ts +1 -1
- package/lib/_internal/objects/integration-tests.d.ts +17 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare enum GenerateChatAnswerRequestModel {
|
|
2
|
+
MODEL_NOT_SET = 0,
|
|
3
|
+
MODEL_OPENAI_GPT_4OMNI = 1,
|
|
4
|
+
MODEL_OPENAI_GPT_4OMNI_MINI = 2,
|
|
5
|
+
MODEL_OPENAI_GPT_4DOT1 = 3,
|
|
6
|
+
MODEL_OPENAI_GPT_4DOT1_MINI = 4,
|
|
7
|
+
MODEL_OPENAI_GPT_4DOT1_NANO = 5,
|
|
8
|
+
MODEL_GOOGLE_GEMINI_2DOT5_PRO_PREVIEW = 6,
|
|
9
|
+
MODEL_GOOGLE_GEMINI_2DOT5_FLASH_PREVIEW = 7
|
|
10
|
+
}
|
|
@@ -2,3 +2,5 @@ export { FunctionParameterParameterLocation, } from './function.enum';
|
|
|
2
2
|
export { GoalChannel, GoalType, } from './goal.enum';
|
|
3
3
|
export { AssistantType, VendorModel, } from './assistant.enum';
|
|
4
4
|
export { ChatAnswerFunctionExecutionJobStatus, ChatChannel, ChatMessageRole, } from './answer.enum';
|
|
5
|
+
export { SortDirection, } from './integration-tests.enum';
|
|
6
|
+
export { GenerateChatAnswerRequestModel, } from './api.enum';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DeleteTestCasesRequest, GetTestRunRequest, GetTestRunResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, RunTestsRequest, RunTestsResponse, UpsertTestCasesRequest } from './objects/';
|
|
2
|
-
import { DeleteTestCasesRequestInterface, GetTestRunRequestInterface, ListTestCasesByAssistantRequestInterface, ListTestRunsByAssistantRequestInterface, RunTestsRequestInterface, UpsertTestCasesRequestInterface } from './interfaces/';
|
|
1
|
+
import { CancelTestRunRequest, DeleteTestCasesRequest, GetTestRunRequest, GetTestRunResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, RunTestsRequest, RunTestsResponse, UpsertTestCasesRequest } from './objects/';
|
|
2
|
+
import { CancelTestRunRequestInterface, DeleteTestCasesRequestInterface, GetTestRunRequestInterface, ListTestCasesByAssistantRequestInterface, ListTestRunsByAssistantRequestInterface, RunTestsRequestInterface, UpsertTestCasesRequestInterface } from './interfaces/';
|
|
3
3
|
import { HttpResponse } from '@angular/common/http';
|
|
4
4
|
import { Observable } from 'rxjs';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -14,6 +14,7 @@ export declare class IntegrationTestApiService {
|
|
|
14
14
|
runTests(r: RunTestsRequest | RunTestsRequestInterface): Observable<RunTestsResponse>;
|
|
15
15
|
listTestRunsByAssistant(r: ListTestRunsByAssistantRequest | ListTestRunsByAssistantRequestInterface): Observable<ListTestRunsByAssistantResponse>;
|
|
16
16
|
getTestRun(r: GetTestRunRequest | GetTestRunRequestInterface): Observable<GetTestRunResponse>;
|
|
17
|
+
cancelTestRun(r: CancelTestRunRequest | CancelTestRunRequestInterface): Observable<HttpResponse<null>>;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<IntegrationTestApiService, never>;
|
|
18
19
|
static ɵprov: i0.ɵɵInjectableDeclaration<IntegrationTestApiService>;
|
|
19
20
|
}
|
|
@@ -339,6 +339,7 @@ export interface GenerateChatAnswerRequestOptionsInterface {
|
|
|
339
339
|
includeAllCitations?: boolean;
|
|
340
340
|
enableAsyncFunctions?: boolean;
|
|
341
341
|
maxTokens?: number;
|
|
342
|
+
model?: e.GenerateChatAnswerRequestModel;
|
|
342
343
|
}
|
|
343
344
|
export interface UpsertAssistantRequestOptionsInterface {
|
|
344
345
|
applyDefaults?: boolean;
|
|
@@ -7,7 +7,7 @@ export { AssistantInterface, AssistantKeyInterface, ConfigInterface, Configurabl
|
|
|
7
7
|
export { ConnectionInterface, ConnectionKeyInterface, } from './connection.interface';
|
|
8
8
|
export { ChatAnswerFunctionExecutionJobInterface, ChatAnswerFunctionExecutionJobResultInterface, ChatMessageInterface, ChatUserInfoInterface, ContextInfoInterface, } from './answer.interface';
|
|
9
9
|
export { PagedRequestOptionsInterface, PagedResponseMetadataInterface, } from './paging.interface';
|
|
10
|
-
export { DeleteTestCasesRequestInterface, GetTestRunRequestInterface, GetTestRunResponseInterface, ListTestCasesByAssistantRequestInterface, ListTestCasesByAssistantResponseInterface, ListTestRunsByAssistantRequestInterface, ListTestRunsByAssistantResponseInterface, RunTestsRequestInterface, RunTestsResponseInterface, TestCaseInterface, TestResultInterface, TestRunInterface, UpsertTestCasesRequestInterface, } from './integration-tests.interface';
|
|
10
|
+
export { CancelTestRunRequestInterface, DeleteTestCasesRequestInterface, GetTestRunRequestInterface, GetTestRunResponseInterface, ListTestCasesByAssistantRequestInterface, ListTestCasesByAssistantResponseInterface, ListTestRunsByAssistantRequestInterface, ListTestRunsByAssistantResponseInterface, RunTestsRequestInterface, RunTestsResponseInterface, SortOptionsInterface, TestCaseInterface, TestResultInterface, TestRunInterface, UpsertTestCasesRequestInterface, } from './integration-tests.interface';
|
|
11
11
|
export { AccessInterface, } from './annotations.interface';
|
|
12
12
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
13
13
|
export { BuildDefaultAssistantRequestInterface, BuildDefaultAssistantResponseInterface, SetAssistantConnectionsRequestConnectionStateInterface, CreateAssistantRequestInterface, CreateAssistantResponseInterface, CreateGoalRequestInterface, CreateGoalResponseInterface, CreatePromptModuleRequestInterface, CreatePromptModuleResponseInterface, CreatePromptModuleVersionRequestInterface, CreatePromptRequestInterface, DeleteAssistantRequestInterface, DeleteConnectionRequestInterface, DeleteFunctionRequestInterface, DeleteGoalRequestInterface, DeletePromptModuleRequestInterface, DeletePromptRequestInterface, DeployPromptModuleRequestInterface, DeployPromptRequestInterface, ExecuteFunctionRequestInterface, ExecuteFunctionResponseInterface, ListFunctionRequestFiltersInterface, ListConnectionsRequestFiltersInterface, ListPromptModuleRequestFiltersInterface, ListAllAssistantsAssociatedToConnectionRequestFiltersInterface, ListAssistantRequestFiltersInterface, 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, CreateAssistantRequestOptionsInterface, CreatePromptModuleVersionRequestOptionsInterface, GenerateChatAnswerRequestOptionsInterface, UpsertAssistantRequestOptionsInterface, SetAssistantConnectionsRequestInterface, UpdateAssistantRequestInterface, UpdateGoalRequestInterface, UpdatePromptModuleRequestInterface, UpdatePromptRequestInterface, UpsertAssistantRequestInterface, UpsertAssistantResponseInterface, UpsertConnectionRequestInterface, UpsertFunctionRequestInterface, UpsertGoalRequestInterface, } from './api.interface';
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { AssistantKeyInterface } from './assistant.interface';
|
|
2
2
|
import { ChatMessageInterface } from './answer.interface';
|
|
3
3
|
import { PagedRequestOptionsInterface, PagedResponseMetadataInterface } from './paging.interface';
|
|
4
|
+
import * as e from '../enums';
|
|
5
|
+
export interface CancelTestRunRequestInterface {
|
|
6
|
+
assistant?: AssistantKeyInterface;
|
|
7
|
+
id?: string;
|
|
8
|
+
}
|
|
4
9
|
export interface DeleteTestCasesRequestInterface {
|
|
5
10
|
assistant?: AssistantKeyInterface;
|
|
6
11
|
testCaseIds?: string[];
|
|
@@ -15,6 +20,8 @@ export interface GetTestRunResponseInterface {
|
|
|
15
20
|
export interface ListTestCasesByAssistantRequestInterface {
|
|
16
21
|
assistant?: AssistantKeyInterface;
|
|
17
22
|
pagingOptions?: PagedRequestOptionsInterface;
|
|
23
|
+
searchTerm?: string;
|
|
24
|
+
sortOptions?: SortOptionsInterface;
|
|
18
25
|
}
|
|
19
26
|
export interface ListTestCasesByAssistantResponseInterface {
|
|
20
27
|
testCases?: TestCaseInterface[];
|
|
@@ -35,6 +42,10 @@ export interface RunTestsRequestInterface {
|
|
|
35
42
|
export interface RunTestsResponseInterface {
|
|
36
43
|
buildUrl?: string;
|
|
37
44
|
}
|
|
45
|
+
export interface SortOptionsInterface {
|
|
46
|
+
direction?: e.SortDirection;
|
|
47
|
+
field?: string;
|
|
48
|
+
}
|
|
38
49
|
export interface TestCaseInterface {
|
|
39
50
|
id?: string;
|
|
40
51
|
name?: string;
|
|
@@ -578,6 +578,7 @@ export declare class GenerateChatAnswerRequestOptions implements i.GenerateChatA
|
|
|
578
578
|
includeAllCitations: boolean;
|
|
579
579
|
enableAsyncFunctions: boolean;
|
|
580
580
|
maxTokens: number;
|
|
581
|
+
model: e.GenerateChatAnswerRequestModel;
|
|
581
582
|
static fromProto(proto: any): GenerateChatAnswerRequestOptions;
|
|
582
583
|
constructor(kwargs?: i.GenerateChatAnswerRequestOptionsInterface);
|
|
583
584
|
toApiJson(): object;
|
|
@@ -7,7 +7,7 @@ export { Assistant, AssistantKey, Config, ConfigurableGoal, DeepgramConfig, Conf
|
|
|
7
7
|
export { Connection, ConnectionKey, } from './connection';
|
|
8
8
|
export { ChatAnswerFunctionExecutionJob, ChatAnswerFunctionExecutionJobResult, ChatMessage, ChatUserInfo, ContextInfo, } from './answer';
|
|
9
9
|
export { PagedRequestOptions, PagedResponseMetadata, } from './paging';
|
|
10
|
-
export { DeleteTestCasesRequest, GetTestRunRequest, GetTestRunResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, RunTestsRequest, RunTestsResponse, TestCase, TestResult, TestRun, UpsertTestCasesRequest, } from './integration-tests';
|
|
10
|
+
export { CancelTestRunRequest, DeleteTestCasesRequest, GetTestRunRequest, GetTestRunResponse, ListTestCasesByAssistantRequest, ListTestCasesByAssistantResponse, ListTestRunsByAssistantRequest, ListTestRunsByAssistantResponse, RunTestsRequest, RunTestsResponse, SortOptions, TestCase, TestResult, TestRun, UpsertTestCasesRequest, } from './integration-tests';
|
|
11
11
|
export { Access, } from './annotations';
|
|
12
12
|
export { FieldMask, } from './field-mask';
|
|
13
13
|
export { BuildDefaultAssistantRequest, BuildDefaultAssistantResponse, SetAssistantConnectionsRequestConnectionState, CreateAssistantRequest, CreateAssistantResponse, CreateGoalRequest, CreateGoalResponse, CreatePromptModuleRequest, CreatePromptModuleResponse, CreatePromptModuleVersionRequest, CreatePromptRequest, DeleteAssistantRequest, DeleteConnectionRequest, DeleteFunctionRequest, DeleteGoalRequest, DeletePromptModuleRequest, DeletePromptRequest, DeployPromptModuleRequest, DeployPromptRequest, ExecuteFunctionRequest, ExecuteFunctionResponse, ListPromptModuleRequestFilters, ListConnectionsRequestFilters, ListGoalsRequestFilters, ListAllAssistantsAssociatedToConnectionRequestFilters, ListAssistantRequestFilters, ListFunctionRequestFilters, 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, CreatePromptModuleVersionRequestOptions, GenerateChatAnswerRequestOptions, CreateAssistantRequestOptions, UpsertAssistantRequestOptions, SetAssistantConnectionsRequest, UpdateAssistantRequest, UpdateGoalRequest, UpdatePromptModuleRequest, UpdatePromptRequest, UpsertAssistantRequest, UpsertAssistantResponse, UpsertConnectionRequest, UpsertFunctionRequest, UpsertGoalRequest, } from './api';
|
|
@@ -2,7 +2,15 @@ import * as i from '../interfaces';
|
|
|
2
2
|
import { AssistantKey } from './assistant';
|
|
3
3
|
import { ChatMessage } from './answer';
|
|
4
4
|
import { PagedRequestOptions, PagedResponseMetadata } from './paging';
|
|
5
|
+
import * as e from '../enums';
|
|
5
6
|
export declare function enumStringToValue<E>(enumRef: any, value: string): E;
|
|
7
|
+
export declare class CancelTestRunRequest implements i.CancelTestRunRequestInterface {
|
|
8
|
+
assistant: AssistantKey;
|
|
9
|
+
id: string;
|
|
10
|
+
static fromProto(proto: any): CancelTestRunRequest;
|
|
11
|
+
constructor(kwargs?: i.CancelTestRunRequestInterface);
|
|
12
|
+
toApiJson(): object;
|
|
13
|
+
}
|
|
6
14
|
export declare class DeleteTestCasesRequest implements i.DeleteTestCasesRequestInterface {
|
|
7
15
|
assistant: AssistantKey;
|
|
8
16
|
testCaseIds: string[];
|
|
@@ -26,6 +34,8 @@ export declare class GetTestRunResponse implements i.GetTestRunResponseInterface
|
|
|
26
34
|
export declare class ListTestCasesByAssistantRequest implements i.ListTestCasesByAssistantRequestInterface {
|
|
27
35
|
assistant: AssistantKey;
|
|
28
36
|
pagingOptions: PagedRequestOptions;
|
|
37
|
+
searchTerm: string;
|
|
38
|
+
sortOptions: SortOptions;
|
|
29
39
|
static fromProto(proto: any): ListTestCasesByAssistantRequest;
|
|
30
40
|
constructor(kwargs?: i.ListTestCasesByAssistantRequestInterface);
|
|
31
41
|
toApiJson(): object;
|
|
@@ -64,6 +74,13 @@ export declare class RunTestsResponse implements i.RunTestsResponseInterface {
|
|
|
64
74
|
constructor(kwargs?: i.RunTestsResponseInterface);
|
|
65
75
|
toApiJson(): object;
|
|
66
76
|
}
|
|
77
|
+
export declare class SortOptions implements i.SortOptionsInterface {
|
|
78
|
+
direction: e.SortDirection;
|
|
79
|
+
field: string;
|
|
80
|
+
static fromProto(proto: any): SortOptions;
|
|
81
|
+
constructor(kwargs?: i.SortOptionsInterface);
|
|
82
|
+
toApiJson(): object;
|
|
83
|
+
}
|
|
67
84
|
export declare class TestCase implements i.TestCaseInterface {
|
|
68
85
|
id: string;
|
|
69
86
|
name: string;
|