@vendasta/ai-assistants 0.40.0 → 0.43.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/interfaces/api.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/goal.interface.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/goal.mjs +7 -1
- package/esm2020/lib/_internal/objects/integration-tests.mjs +7 -1
- package/fesm2015/vendasta-ai-assistants.mjs +18 -0
- package/fesm2015/vendasta-ai-assistants.mjs.map +1 -1
- package/fesm2020/vendasta-ai-assistants.mjs +18 -0
- package/fesm2020/vendasta-ai-assistants.mjs.map +1 -1
- package/lib/_internal/interfaces/api.interface.d.ts +1 -0
- package/lib/_internal/interfaces/goal.interface.d.ts +1 -0
- package/lib/_internal/interfaces/integration-tests.interface.d.ts +2 -0
- package/lib/_internal/objects/api.d.ts +1 -0
- package/lib/_internal/objects/goal.d.ts +1 -0
- package/lib/_internal/objects/integration-tests.d.ts +2 -0
- package/package.json +1 -1
|
@@ -108,6 +108,7 @@ export interface ListConnectionsRequestFiltersInterface {
|
|
|
108
108
|
}
|
|
109
109
|
export interface ListFunctionRequestFiltersInterface {
|
|
110
110
|
namespace?: NamespaceInterface;
|
|
111
|
+
namespaces?: NamespaceInterface[];
|
|
111
112
|
}
|
|
112
113
|
export interface ListAvailableModelsRequestFiltersInterface {
|
|
113
114
|
vendor?: e.ModelVendor[];
|
|
@@ -13,6 +13,8 @@ export interface TestResultCitationInterface {
|
|
|
13
13
|
link?: string;
|
|
14
14
|
reason?: string;
|
|
15
15
|
fileUrl?: string;
|
|
16
|
+
functionArguments?: string;
|
|
17
|
+
functionContent?: string;
|
|
16
18
|
}
|
|
17
19
|
export interface DeleteTestCasesRequestInterface {
|
|
18
20
|
assistant?: AssistantKeyInterface;
|
|
@@ -179,6 +179,7 @@ export declare class ListConnectionsRequestFilters implements i.ListConnectionsR
|
|
|
179
179
|
}
|
|
180
180
|
export declare class ListFunctionRequestFilters implements i.ListFunctionRequestFiltersInterface {
|
|
181
181
|
namespace: Namespace;
|
|
182
|
+
namespaces: Namespace[];
|
|
182
183
|
static fromProto(proto: any): ListFunctionRequestFilters;
|
|
183
184
|
constructor(kwargs?: i.ListFunctionRequestFiltersInterface);
|
|
184
185
|
toApiJson(): object;
|
|
@@ -18,6 +18,8 @@ export declare class TestResultCitation implements i.TestResultCitationInterface
|
|
|
18
18
|
link: string;
|
|
19
19
|
reason: string;
|
|
20
20
|
fileUrl: string;
|
|
21
|
+
functionArguments: string;
|
|
22
|
+
functionContent: string;
|
|
21
23
|
static fromProto(proto: any): TestResultCitation;
|
|
22
24
|
constructor(kwargs?: i.TestResultCitationInterface);
|
|
23
25
|
toApiJson(): object;
|