@orq-ai/node 3.12.12 → 3.12.14
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/README.md +1 -1
- package/bin/mcp-server.js +126 -232
- package/bin/mcp-server.js.map +33 -33
- package/docs/sdks/knowledge/README.md +12 -0
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/errors/index.d.ts +1 -0
- package/models/errors/index.d.ts.map +1 -1
- package/models/errors/index.js +1 -0
- package/models/errors/index.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/searchknowledge.d.ts +17 -246
- package/models/operations/searchknowledge.d.ts.map +1 -1
- package/models/operations/searchknowledge.js +16 -167
- package/models/operations/searchknowledge.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/README.md +90 -92
- package/packages/orq-rc/docs/sdks/agents/README.md +94 -80
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/agentsRun.ts +1 -1
- package/packages/orq-rc/src/funcs/agentsStreamRun.ts +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -3
- package/packages/orq-rc/src/mcp-server/tools/agentsRun.ts +1 -1
- package/packages/orq-rc/src/mcp-server/tools/agentsStreamRun.ts +1 -1
- package/packages/orq-rc/src/models/errors/index.ts +1 -0
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +2 -9
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/index.ts +0 -1
- package/packages/orq-rc/src/models/operations/listagents.ts +2 -9
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveaction.ts +14 -16
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/runagent.ts +183 -14
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +194 -14
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/sdk/agents.ts +2 -20
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/errors/index.ts +1 -0
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/searchknowledge.ts +29 -259
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
- package/packages/orq-rc/src/funcs/agentsReviewAction.ts +0 -177
- package/packages/orq-rc/src/mcp-server/tools/agentsReviewAction.ts +0 -37
- package/packages/orq-rc/src/models/operations/reviewaction.ts +0 -258
|
@@ -28,7 +28,7 @@ import { Result } from "../types/fp.js";
|
|
|
28
28
|
* Run an agent
|
|
29
29
|
*
|
|
30
30
|
* @remarks
|
|
31
|
-
* Executes an agent with the provided configuration using A2A message format. If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The fallback model is configured at the agent level and will be used automatically if the primary model fails during execution.
|
|
31
|
+
* Executes an agent with the provided configuration using A2A message format. If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The fallback model is configured at the agent level and will be used automatically if the primary model fails during execution.
|
|
32
32
|
*/
|
|
33
33
|
export function agentsRun(
|
|
34
34
|
client: OrqCore,
|
|
@@ -31,7 +31,7 @@ import { Result } from "../types/fp.js";
|
|
|
31
31
|
* Run and stream agent execution
|
|
32
32
|
*
|
|
33
33
|
* @remarks
|
|
34
|
-
* Creates or updates an agent with the provided configuration, then streams execution events via Server-Sent Events (SSE). If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The stream will continue until the agent completes, errors, or reaches the configured timeout.
|
|
34
|
+
* Creates or updates an agent with the provided configuration, then streams execution events via Server-Sent Events (SSE). If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The stream will continue until the agent completes, errors, or reaches the configured timeout.
|
|
35
35
|
*/
|
|
36
36
|
export function agentsStreamRun(
|
|
37
37
|
client: OrqCore,
|
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "3.13.0-rc.
|
|
72
|
-
genVersion: "2.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.13.0-rc.
|
|
71
|
+
sdkVersion: "3.13.0-rc.26",
|
|
72
|
+
genVersion: "2.709.0",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.13.0-rc.26 2.709.0 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
|
@@ -18,7 +18,6 @@ import { tool$agentsListActions } from "./tools/agentsListActions.js";
|
|
|
18
18
|
import { tool$agentsRetrieve } from "./tools/agentsRetrieve.js";
|
|
19
19
|
import { tool$agentsRetrieveAction } from "./tools/agentsRetrieveAction.js";
|
|
20
20
|
import { tool$agentsRetrieveTask } from "./tools/agentsRetrieveTask.js";
|
|
21
|
-
import { tool$agentsReviewAction } from "./tools/agentsReviewAction.js";
|
|
22
21
|
import { tool$agentsRun } from "./tools/agentsRun.js";
|
|
23
22
|
import { tool$agentsStreamRun } from "./tools/agentsStreamRun.js";
|
|
24
23
|
import { tool$budgetsCreate } from "./tools/budgetsCreate.js";
|
|
@@ -148,7 +147,7 @@ export function createMCPServer(deps: {
|
|
|
148
147
|
}) {
|
|
149
148
|
const server = new McpServer({
|
|
150
149
|
name: "Orq",
|
|
151
|
-
version: "3.13.0-rc.
|
|
150
|
+
version: "3.13.0-rc.26",
|
|
152
151
|
});
|
|
153
152
|
|
|
154
153
|
const client = new OrqCore({
|
|
@@ -197,7 +196,6 @@ export function createMCPServer(deps: {
|
|
|
197
196
|
tool(tool$agentsStreamRun);
|
|
198
197
|
tool(tool$agentsListActions);
|
|
199
198
|
tool(tool$agentsRetrieveAction);
|
|
200
|
-
tool(tool$agentsReviewAction);
|
|
201
199
|
tool(tool$filesCreate);
|
|
202
200
|
tool(tool$filesList);
|
|
203
201
|
tool(tool$filesGet);
|
|
@@ -14,7 +14,7 @@ export const tool$agentsRun: ToolDefinition<typeof args> = {
|
|
|
14
14
|
name: "agents-run",
|
|
15
15
|
description: `Run an agent
|
|
16
16
|
|
|
17
|
-
Executes an agent with the provided configuration using A2A message format. If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The fallback model is configured at the agent level and will be used automatically if the primary model fails during execution
|
|
17
|
+
Executes an agent with the provided configuration using A2A message format. If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The fallback model is configured at the agent level and will be used automatically if the primary model fails during execution.`,
|
|
18
18
|
args,
|
|
19
19
|
tool: async (client, args, ctx) => {
|
|
20
20
|
const [result, apiCall] = await agentsRun(
|
|
@@ -14,7 +14,7 @@ export const tool$agentsStreamRun: ToolDefinition<typeof args> = {
|
|
|
14
14
|
name: "agents-stream-run",
|
|
15
15
|
description: `Run and stream agent execution
|
|
16
16
|
|
|
17
|
-
Creates or updates an agent with the provided configuration, then streams execution events via Server-Sent Events (SSE). If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The stream will continue until the agent completes, errors, or reaches the configured timeout
|
|
17
|
+
Creates or updates an agent with the provided configuration, then streams execution events via Server-Sent Events (SSE). If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The stream will continue until the agent completes, errors, or reaches the configured timeout.`,
|
|
18
18
|
args,
|
|
19
19
|
tool: async (client, args, ctx) => {
|
|
20
20
|
const [result, apiCall] = await agentsStreamRun(
|
|
@@ -50,6 +50,7 @@ export * from "./getpromptversion.js";
|
|
|
50
50
|
export * from "./honoapierror.js";
|
|
51
51
|
export * from "./httpclienterrors.js";
|
|
52
52
|
export * from "./invokeeval.js";
|
|
53
|
+
export * from "./orqerror.js";
|
|
53
54
|
export * from "./responsevalidationerror.js";
|
|
54
55
|
export * from "./retrievecontact.js";
|
|
55
56
|
export * from "./sdkvalidationerror.js";
|
|
@@ -658,7 +658,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
658
658
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
659
659
|
.optional(),
|
|
660
660
|
updated: z.string().datetime({ offset: true }).default(
|
|
661
|
-
"2025-09-
|
|
661
|
+
"2025-09-22T14:20:40.492Z",
|
|
662
662
|
).transform(v => new Date(v)),
|
|
663
663
|
}).transform((v) => {
|
|
664
664
|
return remap$(v, {
|
|
@@ -693,7 +693,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
693
693
|
isActive: z.boolean(),
|
|
694
694
|
consumption: z.lazy(() => Consumption$outboundSchema).optional(),
|
|
695
695
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
696
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
696
|
+
updated: z.date().default(() => new Date("2025-09-22T14:20:40.492Z"))
|
|
697
697
|
.transform(v => v.toISOString()),
|
|
698
698
|
}).transform((v) => {
|
|
699
699
|
return remap$(v, {
|
|
@@ -182,7 +182,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
182
182
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
183
183
|
.optional(),
|
|
184
184
|
updated: z.string().datetime({ offset: true }).default(
|
|
185
|
-
"2025-09-
|
|
185
|
+
"2025-09-22T14:20:40.492Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -223,7 +223,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
223
223
|
tags: z.array(z.string()).optional(),
|
|
224
224
|
metadata: z.record(z.any()).optional(),
|
|
225
225
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
226
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
226
|
+
updated: z.date().default(() => new Date("2025-09-22T14:20:40.492Z"))
|
|
227
227
|
.transform(v => v.toISOString()),
|
|
228
228
|
}).transform((v) => {
|
|
229
229
|
return remap$(v, {
|
|
@@ -211,7 +211,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
211
211
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
212
212
|
.optional(),
|
|
213
213
|
updated: z.string().datetime({ offset: true }).default(
|
|
214
|
-
"2025-09-
|
|
214
|
+
"2025-09-22T14:20:40.492Z",
|
|
215
215
|
).transform(v => new Date(v)),
|
|
216
216
|
}).transform((v) => {
|
|
217
217
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
updatedById: z.string().optional(),
|
|
252
252
|
metadata: z.lazy(() => CreateDatasetMetadata$outboundSchema),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-09-22T14:20:40.492Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -6081,7 +6081,7 @@ export const ResponseBody$inboundSchema: z.ZodType<
|
|
|
6081
6081
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
6082
6082
|
.optional(),
|
|
6083
6083
|
updated: z.string().datetime({ offset: true }).default(
|
|
6084
|
-
"2025-09-
|
|
6084
|
+
"2025-09-22T14:20:40.492Z",
|
|
6085
6085
|
).transform(v => new Date(v)),
|
|
6086
6086
|
}).transform((v) => {
|
|
6087
6087
|
return remap$(v, {
|
|
@@ -6145,7 +6145,7 @@ export const ResponseBody$outboundSchema: z.ZodType<
|
|
|
6145
6145
|
createdById: z.string().optional(),
|
|
6146
6146
|
updatedById: z.string().optional(),
|
|
6147
6147
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
6148
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
6148
|
+
updated: z.date().default(() => new Date("2025-09-22T14:20:40.492Z"))
|
|
6149
6149
|
.transform(v => v.toISOString()),
|
|
6150
6150
|
}).transform((v) => {
|
|
6151
6151
|
return remap$(v, {
|
|
@@ -751,7 +751,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
751
751
|
z.ZodTypeDef,
|
|
752
752
|
unknown
|
|
753
753
|
> = z.object({
|
|
754
|
-
_id: z.string().default("
|
|
754
|
+
_id: z.string().default("01K5RWRYRA0HBXQPADJQS3NS4N"),
|
|
755
755
|
display_name: z.string(),
|
|
756
756
|
description: z.string().optional(),
|
|
757
757
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -795,7 +795,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
795
795
|
z.ZodTypeDef,
|
|
796
796
|
CreateDatasourceResponseBody
|
|
797
797
|
> = z.object({
|
|
798
|
-
id: z.string().default("
|
|
798
|
+
id: z.string().default("01K5RWRYRA0HBXQPADJQS3NS4N"),
|
|
799
799
|
displayName: z.string(),
|
|
800
800
|
description: z.string().optional(),
|
|
801
801
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -3209,8 +3209,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
3209
3209
|
> = z.object({
|
|
3210
3210
|
_id: z.string(),
|
|
3211
3211
|
description: z.string(),
|
|
3212
|
-
created: z.string().default("2025-09-
|
|
3213
|
-
updated: z.string().default("2025-09-
|
|
3212
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
3213
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
3214
3214
|
guardrail_config: z.union([
|
|
3215
3215
|
z.lazy(() =>
|
|
3216
3216
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3253,8 +3253,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
3253
3253
|
> = z.object({
|
|
3254
3254
|
id: z.string(),
|
|
3255
3255
|
description: z.string(),
|
|
3256
|
-
created: z.string().default("2025-09-
|
|
3257
|
-
updated: z.string().default("2025-09-
|
|
3256
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
3257
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
3258
3258
|
guardrailConfig: z.union([
|
|
3259
3259
|
z.lazy(() =>
|
|
3260
3260
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3671,8 +3671,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3671
3671
|
.object({
|
|
3672
3672
|
_id: z.string(),
|
|
3673
3673
|
description: z.string(),
|
|
3674
|
-
created: z.string().default("2025-09-
|
|
3675
|
-
updated: z.string().default("2025-09-
|
|
3674
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
3675
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
3676
3676
|
guardrail_config: z.union([
|
|
3677
3677
|
z.lazy(() =>
|
|
3678
3678
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3718,8 +3718,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3718
3718
|
> = z.object({
|
|
3719
3719
|
id: z.string(),
|
|
3720
3720
|
description: z.string(),
|
|
3721
|
-
created: z.string().default("2025-09-
|
|
3722
|
-
updated: z.string().default("2025-09-
|
|
3721
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
3722
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
3723
3723
|
guardrailConfig: z.union([
|
|
3724
3724
|
z.lazy(() =>
|
|
3725
3725
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -7143,8 +7143,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7143
7143
|
> = z.object({
|
|
7144
7144
|
_id: z.string(),
|
|
7145
7145
|
description: z.string(),
|
|
7146
|
-
created: z.string().default("2025-09-
|
|
7147
|
-
updated: z.string().default("2025-09-
|
|
7146
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
7147
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
7148
7148
|
guardrail_config: z.union([
|
|
7149
7149
|
z.lazy(() =>
|
|
7150
7150
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -7258,8 +7258,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7258
7258
|
> = z.object({
|
|
7259
7259
|
id: z.string(),
|
|
7260
7260
|
description: z.string(),
|
|
7261
|
-
created: z.string().default("2025-09-
|
|
7262
|
-
updated: z.string().default("2025-09-
|
|
7261
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
7262
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
7263
7263
|
guardrailConfig: z.union([
|
|
7264
7264
|
z.lazy(() =>
|
|
7265
7265
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -7698,8 +7698,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
7698
7698
|
> = z.object({
|
|
7699
7699
|
_id: z.string(),
|
|
7700
7700
|
description: z.string(),
|
|
7701
|
-
created: z.string().default("2025-09-
|
|
7702
|
-
updated: z.string().default("2025-09-
|
|
7701
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
7702
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
7703
7703
|
guardrail_config: z.union([
|
|
7704
7704
|
z.lazy(() =>
|
|
7705
7705
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7741,8 +7741,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
7741
7741
|
> = z.object({
|
|
7742
7742
|
id: z.string(),
|
|
7743
7743
|
description: z.string(),
|
|
7744
|
-
created: z.string().default("2025-09-
|
|
7745
|
-
updated: z.string().default("2025-09-
|
|
7744
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
7745
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
7746
7746
|
guardrailConfig: z.union([
|
|
7747
7747
|
z.lazy(() =>
|
|
7748
7748
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -8155,8 +8155,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8155
8155
|
> = z.object({
|
|
8156
8156
|
_id: z.string(),
|
|
8157
8157
|
description: z.string(),
|
|
8158
|
-
created: z.string().default("2025-09-
|
|
8159
|
-
updated: z.string().default("2025-09-
|
|
8158
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
8159
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
8160
8160
|
guardrail_config: z.union([
|
|
8161
8161
|
z.lazy(() =>
|
|
8162
8162
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -8204,8 +8204,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8204
8204
|
> = z.object({
|
|
8205
8205
|
id: z.string(),
|
|
8206
8206
|
description: z.string(),
|
|
8207
|
-
created: z.string().default("2025-09-
|
|
8208
|
-
updated: z.string().default("2025-09-
|
|
8207
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
8208
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
8209
8209
|
guardrailConfig: z.union([
|
|
8210
8210
|
z.lazy(() =>
|
|
8211
8211
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -8582,8 +8582,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
8582
8582
|
> = z.object({
|
|
8583
8583
|
_id: z.string(),
|
|
8584
8584
|
description: z.string(),
|
|
8585
|
-
created: z.string().default("2025-09-
|
|
8586
|
-
updated: z.string().default("2025-09-
|
|
8585
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
8586
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
8587
8587
|
guardrail_config: z.union([
|
|
8588
8588
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
8589
8589
|
z.lazy(() =>
|
|
@@ -8623,8 +8623,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
8623
8623
|
> = z.object({
|
|
8624
8624
|
id: z.string(),
|
|
8625
8625
|
description: z.string(),
|
|
8626
|
-
created: z.string().default("2025-09-
|
|
8627
|
-
updated: z.string().default("2025-09-
|
|
8626
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
8627
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
8628
8628
|
guardrailConfig: z.union([
|
|
8629
8629
|
z.lazy(() =>
|
|
8630
8630
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -8979,8 +8979,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
8979
8979
|
> = z.object({
|
|
8980
8980
|
_id: z.string(),
|
|
8981
8981
|
description: z.string(),
|
|
8982
|
-
created: z.string().default("2025-09-
|
|
8983
|
-
updated: z.string().default("2025-09-
|
|
8982
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
8983
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
8984
8984
|
guardrail_config: z.union([
|
|
8985
8985
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
8986
8986
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -9020,8 +9020,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
9020
9020
|
> = z.object({
|
|
9021
9021
|
id: z.string(),
|
|
9022
9022
|
description: z.string(),
|
|
9023
|
-
created: z.string().default("2025-09-
|
|
9024
|
-
updated: z.string().default("2025-09-
|
|
9023
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
9024
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
9025
9025
|
guardrailConfig: z.union([
|
|
9026
9026
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
9027
9027
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -146,7 +146,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
146
146
|
file_name: z.string(),
|
|
147
147
|
workspace_id: z.string(),
|
|
148
148
|
created: z.string().datetime({ offset: true }).default(
|
|
149
|
-
"2025-09-
|
|
149
|
+
"2025-09-22T14:20:43.867Z",
|
|
150
150
|
).transform(v => new Date(v)),
|
|
151
151
|
}).transform((v) => {
|
|
152
152
|
return remap$(v, {
|
|
@@ -180,7 +180,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
180
180
|
bytes: z.number(),
|
|
181
181
|
fileName: z.string(),
|
|
182
182
|
workspaceId: z.string(),
|
|
183
|
-
created: z.date().default(() => new Date("2025-09-
|
|
183
|
+
created: z.date().default(() => new Date("2025-09-22T14:20:43.867Z"))
|
|
184
184
|
.transform(v => v.toISOString()),
|
|
185
185
|
}).transform((v) => {
|
|
186
186
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-09-
|
|
199
|
+
"2025-09-22T14:20:43.867Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -230,7 +230,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
230
230
|
bytes: z.number(),
|
|
231
231
|
fileName: z.string(),
|
|
232
232
|
workspaceId: z.string(),
|
|
233
|
-
created: z.date().default(() => new Date("2025-09-
|
|
233
|
+
created: z.date().default(() => new Date("2025-09-22T14:20:43.867Z"))
|
|
234
234
|
.transform(v => v.toISOString()),
|
|
235
235
|
}).transform((v) => {
|
|
236
236
|
return remap$(v, {
|
|
@@ -250,7 +250,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
250
250
|
file_name: z.string(),
|
|
251
251
|
workspace_id: z.string(),
|
|
252
252
|
created: z.string().datetime({ offset: true }).default(
|
|
253
|
-
"2025-09-
|
|
253
|
+
"2025-09-22T14:20:43.867Z",
|
|
254
254
|
).transform(v => new Date(v)),
|
|
255
255
|
}).transform((v) => {
|
|
256
256
|
return remap$(v, {
|
|
@@ -284,7 +284,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
284
284
|
bytes: z.number(),
|
|
285
285
|
fileName: z.string(),
|
|
286
286
|
workspaceId: z.string(),
|
|
287
|
-
created: z.date().default(() => new Date("2025-09-
|
|
287
|
+
created: z.date().default(() => new Date("2025-09-22T14:20:43.867Z"))
|
|
288
288
|
.transform(v => v.toISOString()),
|
|
289
289
|
}).transform((v) => {
|
|
290
290
|
return remap$(v, {
|
|
@@ -197,10 +197,6 @@ export type GetAgentResponseBody = {
|
|
|
197
197
|
description: string;
|
|
198
198
|
systemPrompt?: string | undefined;
|
|
199
199
|
instructions: string;
|
|
200
|
-
/**
|
|
201
|
-
* Optional URL to an icon for the agent
|
|
202
|
-
*/
|
|
203
|
-
iconUrl?: string | undefined;
|
|
204
200
|
/**
|
|
205
201
|
* The status of the agent. `Live` is the latest version of the agent. `Draft` is a version that is not yet published. `Pending` is a version that is pending approval. `Published` is a version that was live and has been replaced by a new version.
|
|
206
202
|
*/
|
|
@@ -950,7 +946,7 @@ export const GetAgentKnowledgeBases$inboundSchema: z.ZodType<
|
|
|
950
946
|
z.ZodTypeDef,
|
|
951
947
|
unknown
|
|
952
948
|
> = z.object({
|
|
953
|
-
id: z.string().default("
|
|
949
|
+
id: z.string().default("01K5RWRYKBTWN1BNJDA656Y2VN"),
|
|
954
950
|
knowledge_id: z.string(),
|
|
955
951
|
configuration: z.union([
|
|
956
952
|
z.lazy(() => GetAgentConfiguration2$inboundSchema),
|
|
@@ -977,7 +973,7 @@ export const GetAgentKnowledgeBases$outboundSchema: z.ZodType<
|
|
|
977
973
|
z.ZodTypeDef,
|
|
978
974
|
GetAgentKnowledgeBases
|
|
979
975
|
> = z.object({
|
|
980
|
-
id: z.string().default("
|
|
976
|
+
id: z.string().default("01K5RWRYKBTWN1BNJDA656Y2VN"),
|
|
981
977
|
knowledgeId: z.string(),
|
|
982
978
|
configuration: z.union([
|
|
983
979
|
z.lazy(() => GetAgentConfiguration2$outboundSchema),
|
|
@@ -1057,7 +1053,6 @@ export const GetAgentResponseBody$inboundSchema: z.ZodType<
|
|
|
1057
1053
|
description: z.string(),
|
|
1058
1054
|
system_prompt: z.string().optional(),
|
|
1059
1055
|
instructions: z.string(),
|
|
1060
|
-
iconUrl: z.string().optional(),
|
|
1061
1056
|
status: GetAgentStatus$inboundSchema,
|
|
1062
1057
|
settings: z.lazy(() => GetAgentSettings$inboundSchema).optional(),
|
|
1063
1058
|
model: z.lazy(() => GetAgentModel$inboundSchema),
|
|
@@ -1100,7 +1095,6 @@ export type GetAgentResponseBody$Outbound = {
|
|
|
1100
1095
|
description: string;
|
|
1101
1096
|
system_prompt?: string | undefined;
|
|
1102
1097
|
instructions: string;
|
|
1103
|
-
iconUrl?: string | undefined;
|
|
1104
1098
|
status: string;
|
|
1105
1099
|
settings?: GetAgentSettings$Outbound | undefined;
|
|
1106
1100
|
model: GetAgentModel$Outbound;
|
|
@@ -1132,7 +1126,6 @@ export const GetAgentResponseBody$outboundSchema: z.ZodType<
|
|
|
1132
1126
|
description: z.string(),
|
|
1133
1127
|
systemPrompt: z.string().optional(),
|
|
1134
1128
|
instructions: z.string(),
|
|
1135
|
-
iconUrl: z.string().optional(),
|
|
1136
1129
|
status: GetAgentStatus$outboundSchema,
|
|
1137
1130
|
settings: z.lazy(() => GetAgentSettings$outboundSchema).optional(),
|
|
1138
1131
|
model: z.lazy(() => GetAgentModel$outboundSchema),
|
|
@@ -351,7 +351,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
351
351
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
352
352
|
.optional(),
|
|
353
353
|
updated: z.string().datetime({ offset: true }).default(
|
|
354
|
-
"2025-09-
|
|
354
|
+
"2025-09-22T14:20:40.492Z",
|
|
355
355
|
).transform(v => new Date(v)),
|
|
356
356
|
}).transform((v) => {
|
|
357
357
|
return remap$(v, {
|
|
@@ -386,7 +386,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
386
386
|
isActive: z.boolean(),
|
|
387
387
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
388
388
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
389
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
389
|
+
updated: z.date().default(() => new Date("2025-09-22T14:20:40.492Z"))
|
|
390
390
|
.transform(v => v.toISOString()),
|
|
391
391
|
}).transform((v) => {
|
|
392
392
|
return remap$(v, {
|
|
@@ -1556,8 +1556,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1556
1556
|
> = z.object({
|
|
1557
1557
|
_id: z.string(),
|
|
1558
1558
|
description: z.string(),
|
|
1559
|
-
created: z.string().default("2025-09-
|
|
1560
|
-
updated: z.string().default("2025-09-
|
|
1559
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
1560
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
1561
1561
|
guardrail_config: z.union([
|
|
1562
1562
|
z.lazy(() =>
|
|
1563
1563
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1600,8 +1600,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1600
1600
|
> = z.object({
|
|
1601
1601
|
id: z.string(),
|
|
1602
1602
|
description: z.string(),
|
|
1603
|
-
created: z.string().default("2025-09-
|
|
1604
|
-
updated: z.string().default("2025-09-
|
|
1603
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
1604
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
1605
1605
|
guardrailConfig: z.union([
|
|
1606
1606
|
z.lazy(() =>
|
|
1607
1607
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -2002,8 +2002,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
2002
2002
|
> = z.object({
|
|
2003
2003
|
_id: z.string(),
|
|
2004
2004
|
description: z.string(),
|
|
2005
|
-
created: z.string().default("2025-09-
|
|
2006
|
-
updated: z.string().default("2025-09-
|
|
2005
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
2006
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
2007
2007
|
guardrail_config: z.union([
|
|
2008
2008
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
2009
2009
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -2044,8 +2044,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
2044
2044
|
> = z.object({
|
|
2045
2045
|
id: z.string(),
|
|
2046
2046
|
description: z.string(),
|
|
2047
|
-
created: z.string().default("2025-09-
|
|
2048
|
-
updated: z.string().default("2025-09-
|
|
2047
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
2048
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
2049
2049
|
guardrailConfig: z.union([
|
|
2050
2050
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
2051
2051
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -5512,8 +5512,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
5512
5512
|
> = z.object({
|
|
5513
5513
|
_id: z.string(),
|
|
5514
5514
|
description: z.string(),
|
|
5515
|
-
created: z.string().default("2025-09-
|
|
5516
|
-
updated: z.string().default("2025-09-
|
|
5515
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
5516
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
5517
5517
|
guardrail_config: z.union([
|
|
5518
5518
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
5519
5519
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -5623,8 +5623,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
5623
5623
|
> = z.object({
|
|
5624
5624
|
id: z.string(),
|
|
5625
5625
|
description: z.string(),
|
|
5626
|
-
created: z.string().default("2025-09-
|
|
5627
|
-
updated: z.string().default("2025-09-
|
|
5626
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
5627
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
5628
5628
|
guardrailConfig: z.union([
|
|
5629
5629
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
5630
5630
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -6006,8 +6006,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
6006
6006
|
> = z.object({
|
|
6007
6007
|
_id: z.string(),
|
|
6008
6008
|
description: z.string(),
|
|
6009
|
-
created: z.string().default("2025-09-
|
|
6010
|
-
updated: z.string().default("2025-09-
|
|
6009
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
6010
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
6011
6011
|
guardrail_config: z.union([
|
|
6012
6012
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
6013
6013
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -6045,8 +6045,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
6045
6045
|
> = z.object({
|
|
6046
6046
|
id: z.string(),
|
|
6047
6047
|
description: z.string(),
|
|
6048
|
-
created: z.string().default("2025-09-
|
|
6049
|
-
updated: z.string().default("2025-09-
|
|
6048
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
6049
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
6050
6050
|
guardrailConfig: z.union([
|
|
6051
6051
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
6052
6052
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -6392,8 +6392,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
6392
6392
|
> = z.object({
|
|
6393
6393
|
_id: z.string(),
|
|
6394
6394
|
description: z.string(),
|
|
6395
|
-
created: z.string().default("2025-09-
|
|
6396
|
-
updated: z.string().default("2025-09-
|
|
6395
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
6396
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
6397
6397
|
guardrail_config: z.union([
|
|
6398
6398
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
6399
6399
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -6437,8 +6437,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
6437
6437
|
> = z.object({
|
|
6438
6438
|
id: z.string(),
|
|
6439
6439
|
description: z.string(),
|
|
6440
|
-
created: z.string().default("2025-09-
|
|
6441
|
-
updated: z.string().default("2025-09-
|
|
6440
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
6441
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
6442
6442
|
guardrailConfig: z.union([
|
|
6443
6443
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
6444
6444
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -6803,8 +6803,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
6803
6803
|
> = z.object({
|
|
6804
6804
|
_id: z.string(),
|
|
6805
6805
|
description: z.string(),
|
|
6806
|
-
created: z.string().default("2025-09-
|
|
6807
|
-
updated: z.string().default("2025-09-
|
|
6806
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
6807
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
6808
6808
|
guardrail_config: z.union([
|
|
6809
6809
|
z.lazy(() =>
|
|
6810
6810
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -6846,8 +6846,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
6846
6846
|
> = z.object({
|
|
6847
6847
|
id: z.string(),
|
|
6848
6848
|
description: z.string(),
|
|
6849
|
-
created: z.string().default("2025-09-
|
|
6850
|
-
updated: z.string().default("2025-09-
|
|
6849
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
6850
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
6851
6851
|
guardrailConfig: z.union([
|
|
6852
6852
|
z.lazy(() =>
|
|
6853
6853
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -7229,8 +7229,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
7229
7229
|
z.object({
|
|
7230
7230
|
_id: z.string(),
|
|
7231
7231
|
description: z.string(),
|
|
7232
|
-
created: z.string().default("2025-09-
|
|
7233
|
-
updated: z.string().default("2025-09-
|
|
7232
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
7233
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
7234
7234
|
guardrail_config: z.union([
|
|
7235
7235
|
z.lazy(() =>
|
|
7236
7236
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7274,8 +7274,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
7274
7274
|
> = z.object({
|
|
7275
7275
|
id: z.string(),
|
|
7276
7276
|
description: z.string(),
|
|
7277
|
-
created: z.string().default("2025-09-
|
|
7278
|
-
updated: z.string().default("2025-09-
|
|
7277
|
+
created: z.string().default("2025-09-22T14:20:43.147Z"),
|
|
7278
|
+
updated: z.string().default("2025-09-22T14:20:43.148Z"),
|
|
7279
7279
|
guardrailConfig: z.union([
|
|
7280
7280
|
z.lazy(() =>
|
|
7281
7281
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -108,7 +108,6 @@ export * from "./retrievedatasource.js";
|
|
|
108
108
|
export * from "./retrievememory.js";
|
|
109
109
|
export * from "./retrievememorydocument.js";
|
|
110
110
|
export * from "./retrievememorystore.js";
|
|
111
|
-
export * from "./reviewaction.js";
|
|
112
111
|
export * from "./runagent.js";
|
|
113
112
|
export * from "./searchknowledge.js";
|
|
114
113
|
export * from "./streamrunagent.js";
|