@orq-ai/node 4.12.8 → 4.12.10
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/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/lib/config.js.map +1 -1
- package/models/components/evaluatorresponsefunction.js +2 -2
- package/models/components/evaluatorresponsehttp.js +2 -2
- package/models/components/evaluatorresponsejsonschema.js +2 -2
- package/models/components/evaluatorresponsellm.js +2 -2
- package/models/components/evaluatorresponsepython.js +2 -2
- package/models/components/evaluatorresponseragas.js +2 -2
- package/models/components/evaluatorresponsetypescript.js +2 -2
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +5 -5
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +5 -5
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +4 -4
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +5 -5
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +5 -5
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +5 -5
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsefunction.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsehttp.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsejsonschema.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsellm.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsepython.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponseragas.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsetypescript.ts +2 -2
- package/packages/orq-rc/src/models/components/index.ts +2 -1
- package/packages/orq-rc/src/models/components/plugin.ts +7 -0
- package/packages/orq-rc/src/models/components/publicplugin.ts +111 -0
- package/packages/orq-rc/src/models/components/reasoning.ts +1 -0
- package/packages/orq-rc/src/models/components/reasoningparam.ts +1 -0
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/components/responsehealingplugin.ts +77 -0
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +30 -10
- package/packages/orq-rc/src/models/operations/createchatcompletion.ts +9 -3
- package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +5 -5
- package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/createprompt.ts +19 -8
- package/packages/orq-rc/src/models/operations/createrouterresponse.ts +5 -9
- package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +2 -0
- package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +2 -0
- package/packages/orq-rc/src/models/operations/deployments.ts +4 -0
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +2 -0
- package/packages/orq-rc/src/models/operations/getallprompts.ts +10 -5
- package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +10 -5
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +10 -5
- package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/invokeeval.ts +66 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +12 -4
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +5 -5
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +10 -5
- package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +4 -4
- package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +12 -4
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +5 -5
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
- package/packages/orq-rc/src/models/operations/runagent.ts +19 -7
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +19 -7
- package/packages/orq-rc/src/models/operations/updateagent.ts +30 -10
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +5 -5
- package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateprompt.ts +19 -8
- package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
- package/packages/orq-rc/src/sdk/feedback.ts +2 -2
- package/sdk/feedback.d.ts +4 -1
- package/sdk/feedback.d.ts.map +1 -1
- package/sdk/feedback.js +4 -1
- package/sdk/feedback.js.map +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/evaluatorresponsefunction.ts +2 -2
- package/src/models/components/evaluatorresponsehttp.ts +2 -2
- package/src/models/components/evaluatorresponsejsonschema.ts +2 -2
- package/src/models/components/evaluatorresponsellm.ts +2 -2
- package/src/models/components/evaluatorresponsepython.ts +2 -2
- package/src/models/components/evaluatorresponseragas.ts +2 -2
- package/src/models/components/evaluatorresponsetypescript.ts +2 -2
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +5 -5
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +5 -5
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +4 -4
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +5 -5
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +5 -5
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
- package/src/sdk/feedback.ts +4 -1
- package/packages/orq-rc/src/models/components/publicpiiredactionplugin.ts +0 -127
|
@@ -2747,7 +2747,7 @@ export const UpdateDatapointEvaluations4$inboundSchema: z.ZodType<
|
|
|
2747
2747
|
explanation: z.string().optional(),
|
|
2748
2748
|
reviewed_by_id: z.string(),
|
|
2749
2749
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2750
|
-
"2026-07-
|
|
2750
|
+
"2026-07-29T10:17:08.152Z",
|
|
2751
2751
|
).transform(v => new Date(v)),
|
|
2752
2752
|
type: z.literal("string_array"),
|
|
2753
2753
|
values: z.array(z.string()),
|
|
@@ -2847,7 +2847,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
2847
2847
|
explanation: z.string().optional(),
|
|
2848
2848
|
reviewed_by_id: z.string(),
|
|
2849
2849
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2850
|
-
"2026-07-
|
|
2850
|
+
"2026-07-29T10:17:08.151Z",
|
|
2851
2851
|
).transform(v => new Date(v)),
|
|
2852
2852
|
type: z.literal("boolean"),
|
|
2853
2853
|
value: z.boolean(),
|
|
@@ -2944,7 +2944,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
2944
2944
|
explanation: z.string().optional(),
|
|
2945
2945
|
reviewed_by_id: z.string(),
|
|
2946
2946
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2947
|
-
"2026-07-
|
|
2947
|
+
"2026-07-29T10:17:08.151Z",
|
|
2948
2948
|
).transform(v => new Date(v)),
|
|
2949
2949
|
type: z.literal("number"),
|
|
2950
2950
|
value: z.number(),
|
|
@@ -3033,7 +3033,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
3033
3033
|
explanation: z.string().optional(),
|
|
3034
3034
|
reviewed_by_id: z.string(),
|
|
3035
3035
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3036
|
-
"2026-07-
|
|
3036
|
+
"2026-07-29T10:17:08.150Z",
|
|
3037
3037
|
).transform(v => new Date(v)),
|
|
3038
3038
|
type: z.literal("string"),
|
|
3039
3039
|
value: z.string(),
|
|
@@ -3118,7 +3118,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
3118
3118
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3119
3119
|
.optional(),
|
|
3120
3120
|
updated: z.string().datetime({ offset: true }).default(
|
|
3121
|
-
"2026-07-
|
|
3121
|
+
"2026-07-29T10:16:52.982Z",
|
|
3122
3122
|
).transform(v => new Date(v)),
|
|
3123
3123
|
}).transform((v) => {
|
|
3124
3124
|
return remap$(v, {
|
|
@@ -182,7 +182,7 @@ export const UpdateDatasetResponseBody$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
|
-
"2026-07-
|
|
185
|
+
"2026-07-29T10:16:52.982Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -221,7 +221,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
221
221
|
z.ZodTypeDef,
|
|
222
222
|
unknown
|
|
223
223
|
> = z.object({
|
|
224
|
-
_id: z.string().default("
|
|
224
|
+
_id: z.string().default("01KYPP1H6HN2QT9QB97H7TK9PX"),
|
|
225
225
|
display_name: z.string(),
|
|
226
226
|
description: z.nullable(z.string()).optional(),
|
|
227
227
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -584,7 +584,8 @@ export type UpdatePromptGuardrails = {
|
|
|
584
584
|
export type UpdatePromptPlugins =
|
|
585
585
|
| components.PIIRedactionPluginEn
|
|
586
586
|
| components.PIIRedactionPluginNl
|
|
587
|
-
| components.PIIRedactionPluginAuto
|
|
587
|
+
| components.PIIRedactionPluginAuto
|
|
588
|
+
| components.ResponseHealingPlugin;
|
|
588
589
|
|
|
589
590
|
export type UpdatePromptFallbacks = {
|
|
590
591
|
/**
|
|
@@ -851,13 +852,14 @@ export type UpdatePromptPromptInput = {
|
|
|
851
852
|
*/
|
|
852
853
|
guardrails?: Array<UpdatePromptGuardrails> | undefined;
|
|
853
854
|
/**
|
|
854
|
-
* Request-scoped transforms applied to the text exchanged with the model.
|
|
855
|
+
* Request-scoped transforms applied to the text exchanged with the model. Supports `pii_redaction`, which replaces PII with placeholders before the provider sees it and restores the original values in the response, and `response_healing`, which repairs malformed JSON in non-streaming output.
|
|
855
856
|
*/
|
|
856
857
|
plugins?:
|
|
857
858
|
| Array<
|
|
858
859
|
| components.PIIRedactionPluginEn
|
|
859
860
|
| components.PIIRedactionPluginNl
|
|
860
861
|
| components.PIIRedactionPluginAuto
|
|
862
|
+
| components.ResponseHealingPlugin
|
|
861
863
|
>
|
|
862
864
|
| undefined;
|
|
863
865
|
/**
|
|
@@ -1232,6 +1234,8 @@ export const UpdatePromptPromptsResponseReasoningEffort = {
|
|
|
1232
1234
|
Low: "low",
|
|
1233
1235
|
Medium: "medium",
|
|
1234
1236
|
High: "high",
|
|
1237
|
+
Xhigh: "xhigh",
|
|
1238
|
+
Max: "max",
|
|
1235
1239
|
} as const;
|
|
1236
1240
|
/**
|
|
1237
1241
|
* Constrains effort on reasoning for reasoning models. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
@@ -1407,6 +1411,8 @@ export const UpdatePromptProvider = {
|
|
|
1407
1411
|
Poolside: "poolside",
|
|
1408
1412
|
Tencent: "tencent",
|
|
1409
1413
|
Nebius: "nebius",
|
|
1414
|
+
Fireworks: "fireworks",
|
|
1415
|
+
Baseten: "baseten",
|
|
1410
1416
|
Reson8: "reson8",
|
|
1411
1417
|
Slack: "slack",
|
|
1412
1418
|
Orq: "orq",
|
|
@@ -1551,9 +1557,6 @@ export type UpdatePromptPromptsMessages = {
|
|
|
1551
1557
|
export type UpdatePromptPromptConfig = {
|
|
1552
1558
|
stream?: boolean | undefined;
|
|
1553
1559
|
model?: string | null | undefined;
|
|
1554
|
-
/**
|
|
1555
|
-
* The id of the resource
|
|
1556
|
-
*/
|
|
1557
1560
|
modelDbId?: string | null | undefined;
|
|
1558
1561
|
/**
|
|
1559
1562
|
* The modality of the model
|
|
@@ -1825,7 +1828,8 @@ export type UpdatePromptPromptsGuardrails = {
|
|
|
1825
1828
|
export type UpdatePromptPromptsPlugins =
|
|
1826
1829
|
| components.PIIRedactionPluginEn
|
|
1827
1830
|
| components.PIIRedactionPluginNl
|
|
1828
|
-
| components.PIIRedactionPluginAuto
|
|
1831
|
+
| components.PIIRedactionPluginAuto
|
|
1832
|
+
| components.ResponseHealingPlugin;
|
|
1829
1833
|
|
|
1830
1834
|
export type UpdatePromptPromptsFallbacks = {
|
|
1831
1835
|
/**
|
|
@@ -2415,13 +2419,14 @@ export type UpdatePromptPromptField = {
|
|
|
2415
2419
|
*/
|
|
2416
2420
|
guardrails?: Array<UpdatePromptPromptsGuardrails> | undefined;
|
|
2417
2421
|
/**
|
|
2418
|
-
* Request-scoped transforms applied to the text exchanged with the model.
|
|
2422
|
+
* Request-scoped transforms applied to the text exchanged with the model. Supports `pii_redaction`, which replaces PII with placeholders before the provider sees it and restores the original values in the response, and `response_healing`, which repairs malformed JSON in non-streaming output.
|
|
2419
2423
|
*/
|
|
2420
2424
|
plugins?:
|
|
2421
2425
|
| Array<
|
|
2422
2426
|
| components.PIIRedactionPluginEn
|
|
2423
2427
|
| components.PIIRedactionPluginNl
|
|
2424
2428
|
| components.PIIRedactionPluginAuto
|
|
2429
|
+
| components.ResponseHealingPlugin
|
|
2425
2430
|
>
|
|
2426
2431
|
| undefined;
|
|
2427
2432
|
/**
|
|
@@ -3550,7 +3555,8 @@ export function updatePromptGuardrailsToJSON(
|
|
|
3550
3555
|
export type UpdatePromptPlugins$Outbound =
|
|
3551
3556
|
| components.PIIRedactionPluginEn$Outbound
|
|
3552
3557
|
| components.PIIRedactionPluginNl$Outbound
|
|
3553
|
-
| components.PIIRedactionPluginAuto$Outbound
|
|
3558
|
+
| components.PIIRedactionPluginAuto$Outbound
|
|
3559
|
+
| components.ResponseHealingPlugin$Outbound;
|
|
3554
3560
|
|
|
3555
3561
|
/** @internal */
|
|
3556
3562
|
export const UpdatePromptPlugins$outboundSchema: z.ZodType<
|
|
@@ -3561,6 +3567,7 @@ export const UpdatePromptPlugins$outboundSchema: z.ZodType<
|
|
|
3561
3567
|
components.PIIRedactionPluginEn$outboundSchema,
|
|
3562
3568
|
components.PIIRedactionPluginNl$outboundSchema,
|
|
3563
3569
|
components.PIIRedactionPluginAuto$outboundSchema,
|
|
3570
|
+
components.ResponseHealingPlugin$outboundSchema,
|
|
3564
3571
|
]);
|
|
3565
3572
|
|
|
3566
3573
|
export function updatePromptPluginsToJSON(
|
|
@@ -3831,6 +3838,7 @@ export type UpdatePromptPromptInput$Outbound = {
|
|
|
3831
3838
|
| components.PIIRedactionPluginEn$Outbound
|
|
3832
3839
|
| components.PIIRedactionPluginNl$Outbound
|
|
3833
3840
|
| components.PIIRedactionPluginAuto$Outbound
|
|
3841
|
+
| components.ResponseHealingPlugin$Outbound
|
|
3834
3842
|
>
|
|
3835
3843
|
| undefined;
|
|
3836
3844
|
fallbacks?: Array<UpdatePromptFallbacks$Outbound> | undefined;
|
|
@@ -3900,6 +3908,7 @@ export const UpdatePromptPromptInput$outboundSchema: z.ZodType<
|
|
|
3900
3908
|
components.PIIRedactionPluginEn$outboundSchema,
|
|
3901
3909
|
components.PIIRedactionPluginNl$outboundSchema,
|
|
3902
3910
|
components.PIIRedactionPluginAuto$outboundSchema,
|
|
3911
|
+
components.ResponseHealingPlugin$outboundSchema,
|
|
3903
3912
|
]),
|
|
3904
3913
|
).optional(),
|
|
3905
3914
|
fallbacks: z.array(z.lazy(() => UpdatePromptFallbacks$outboundSchema))
|
|
@@ -5010,6 +5019,7 @@ export const UpdatePromptPromptsPlugins$inboundSchema: z.ZodType<
|
|
|
5010
5019
|
components.PIIRedactionPluginEn$inboundSchema,
|
|
5011
5020
|
components.PIIRedactionPluginNl$inboundSchema,
|
|
5012
5021
|
components.PIIRedactionPluginAuto$inboundSchema,
|
|
5022
|
+
components.ResponseHealingPlugin$inboundSchema,
|
|
5013
5023
|
]);
|
|
5014
5024
|
|
|
5015
5025
|
export function updatePromptPromptsPluginsFromJSON(
|
|
@@ -5801,6 +5811,7 @@ export const UpdatePromptPromptField$inboundSchema: z.ZodType<
|
|
|
5801
5811
|
components.PIIRedactionPluginEn$inboundSchema,
|
|
5802
5812
|
components.PIIRedactionPluginNl$inboundSchema,
|
|
5803
5813
|
components.PIIRedactionPluginAuto$inboundSchema,
|
|
5814
|
+
components.ResponseHealingPlugin$inboundSchema,
|
|
5804
5815
|
]),
|
|
5805
5816
|
).optional(),
|
|
5806
5817
|
fallbacks: z.array(z.lazy(() => UpdatePromptPromptsFallbacks$inboundSchema))
|
|
@@ -1480,7 +1480,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1480
1480
|
z.ZodTypeDef,
|
|
1481
1481
|
RequestBodyTools
|
|
1482
1482
|
> = z.object({
|
|
1483
|
-
id: z.string().default("
|
|
1483
|
+
id: z.string().default("01KYPP1H2XFSA3A3ERJNKF1QCE"),
|
|
1484
1484
|
name: z.string(),
|
|
1485
1485
|
description: z.string().optional(),
|
|
1486
1486
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2203,7 +2203,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2203
2203
|
z.ZodTypeDef,
|
|
2204
2204
|
unknown
|
|
2205
2205
|
> = z.object({
|
|
2206
|
-
_id: z.string().default("
|
|
2206
|
+
_id: z.string().default("tool_01KYPP1H2QH93V16RP959A1YGP"),
|
|
2207
2207
|
path: z.string(),
|
|
2208
2208
|
key: z.string(),
|
|
2209
2209
|
display_name: z.string().optional(),
|
|
@@ -2306,7 +2306,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2306
2306
|
z.ZodTypeDef,
|
|
2307
2307
|
unknown
|
|
2308
2308
|
> = z.object({
|
|
2309
|
-
id: z.string().default("
|
|
2309
|
+
id: z.string().default("01KYPP1H2PSEZJK5Y0CX7KAC99"),
|
|
2310
2310
|
name: z.string(),
|
|
2311
2311
|
description: z.string().optional(),
|
|
2312
2312
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -2364,7 +2364,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2364
2364
|
z.ZodTypeDef,
|
|
2365
2365
|
unknown
|
|
2366
2366
|
> = z.object({
|
|
2367
|
-
_id: z.string().default("
|
|
2367
|
+
_id: z.string().default("tool_01KYPP1H2NT8E2JPM47669Y9RD"),
|
|
2368
2368
|
path: z.string(),
|
|
2369
2369
|
key: z.string(),
|
|
2370
2370
|
display_name: z.string().optional(),
|
|
@@ -2554,7 +2554,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2554
2554
|
z.ZodTypeDef,
|
|
2555
2555
|
unknown
|
|
2556
2556
|
> = z.object({
|
|
2557
|
-
_id: z.string().default("
|
|
2557
|
+
_id: z.string().default("tool_01KYPP1H2K1FJEY6SR3WX4BWRV"),
|
|
2558
2558
|
path: z.string(),
|
|
2559
2559
|
key: z.string(),
|
|
2560
2560
|
display_name: z.string().optional(),
|
|
@@ -2649,7 +2649,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2649
2649
|
z.ZodTypeDef,
|
|
2650
2650
|
unknown
|
|
2651
2651
|
> = z.object({
|
|
2652
|
-
_id: z.string().default("
|
|
2652
|
+
_id: z.string().default("tool_01KYPP1H2HKSXBDC95DZ2MM8F8"),
|
|
2653
2653
|
path: z.string(),
|
|
2654
2654
|
key: z.string(),
|
|
2655
2655
|
display_name: z.string().optional(),
|
|
@@ -2752,7 +2752,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2752
2752
|
z.ZodTypeDef,
|
|
2753
2753
|
unknown
|
|
2754
2754
|
> = z.object({
|
|
2755
|
-
_id: z.string().default("
|
|
2755
|
+
_id: z.string().default("tool_01KYPP1H2GZKW6ME44KZT105ZM"),
|
|
2756
2756
|
path: z.string(),
|
|
2757
2757
|
key: z.string(),
|
|
2758
2758
|
display_name: z.string().optional(),
|
|
@@ -45,10 +45,10 @@ export class Feedback extends ClientSDK {
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
|
-
* Create
|
|
48
|
+
* Create guardrail rule
|
|
49
49
|
*
|
|
50
50
|
* @remarks
|
|
51
|
-
* Creates a
|
|
51
|
+
* Creates a new guardrail rule with expression, guardrails configuration, and timeout settings.
|
|
52
52
|
*/
|
|
53
53
|
async create(
|
|
54
54
|
request?: operations.PostV2FeedbackRequestBody | undefined,
|
package/sdk/feedback.d.ts
CHANGED
|
@@ -5,7 +5,10 @@ export declare class Feedback extends ClientSDK {
|
|
|
5
5
|
createEvaluation(request?: operations.PostV2FeedbackEvaluationRequestBody | undefined, options?: RequestOptions): Promise<void>;
|
|
6
6
|
remove(request?: operations.PostV2FeedbackRemoveRequestBody | undefined, options?: RequestOptions): Promise<operations.PostV2FeedbackRemoveResponseBody>;
|
|
7
7
|
/**
|
|
8
|
-
* Create
|
|
8
|
+
* Create response
|
|
9
|
+
*
|
|
10
|
+
* @remarks
|
|
11
|
+
* Initiates an agent conversation and returns a complete response. This endpoint manages the full lifecycle of an agent interaction, from receiving the initial message through all processing steps until completion. Supports synchronous execution (waits for completion) and asynchronous execution (returns immediately with task ID). The response includes all messages exchanged, tool calls made, and token usage statistics. Ideal for request-response patterns where you need the complete interaction result.
|
|
9
12
|
*/
|
|
10
13
|
create(request?: operations.PostV2FeedbackRequestBody | undefined, options?: RequestOptions): Promise<operations.PostV2FeedbackResponseBody>;
|
|
11
14
|
}
|
package/sdk/feedback.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feedback.d.ts","sourceRoot":"","sources":["../src/sdk/feedback.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,QAAS,SAAQ,SAAS;IAC/B,gBAAgB,CACpB,OAAO,CAAC,EAAE,UAAU,CAAC,yCAAyC,GAAG,SAAS,EAC1E,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,IAAI,CAAC;IAQV,gBAAgB,CACpB,OAAO,CAAC,EAAE,UAAU,CAAC,mCAAmC,GAAG,SAAS,EACpE,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,IAAI,CAAC;IAQV,MAAM,CACV,OAAO,CAAC,EAAE,UAAU,CAAC,+BAA+B,GAAG,SAAS,EAChE,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,gCAAgC,CAAC;IAQvD
|
|
1
|
+
{"version":3,"file":"feedback.d.ts","sourceRoot":"","sources":["../src/sdk/feedback.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,QAAS,SAAQ,SAAS;IAC/B,gBAAgB,CACpB,OAAO,CAAC,EAAE,UAAU,CAAC,yCAAyC,GAAG,SAAS,EAC1E,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,IAAI,CAAC;IAQV,gBAAgB,CACpB,OAAO,CAAC,EAAE,UAAU,CAAC,mCAAmC,GAAG,SAAS,EACpE,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,IAAI,CAAC;IAQV,MAAM,CACV,OAAO,CAAC,EAAE,UAAU,CAAC,+BAA+B,GAAG,SAAS,EAChE,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,gCAAgC,CAAC;IAQvD;;;;;OAKG;IACG,MAAM,CACV,OAAO,CAAC,EAAE,UAAU,CAAC,yBAAyB,GAAG,SAAS,EAC1D,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,0BAA0B,CAAC;CAOlD"}
|
package/sdk/feedback.js
CHANGED
|
@@ -21,7 +21,10 @@ class Feedback extends sdks_js_1.ClientSDK {
|
|
|
21
21
|
return (0, fp_js_1.unwrapAsync)((0, feedbackRemove_js_1.feedbackRemove)(this, request, options));
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
|
-
* Create
|
|
24
|
+
* Create response
|
|
25
|
+
*
|
|
26
|
+
* @remarks
|
|
27
|
+
* Initiates an agent conversation and returns a complete response. This endpoint manages the full lifecycle of an agent interaction, from receiving the initial message through all processing steps until completion. Supports synchronous execution (waits for completion) and asynchronous execution (returns immediately with task ID). The response includes all messages exchanged, tool calls made, and token usage statistics. Ideal for request-response patterns where you need the complete interaction result.
|
|
25
28
|
*/
|
|
26
29
|
async create(request, options) {
|
|
27
30
|
return (0, fp_js_1.unwrapAsync)((0, feedbackCreate_js_1.feedbackCreate)(this, request, options));
|
package/sdk/feedback.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feedback.js","sourceRoot":"","sources":["../src/sdk/feedback.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,kEAA4D;AAC5D,sFAAgF;AAChF,kEAA4D;AAC5D,sFAAgF;AAChF,4CAA2D;AAE3D,0CAA6C;AAE7C,MAAa,QAAS,SAAQ,mBAAS;IACrC,KAAK,CAAC,gBAAgB,CACpB,OAA0E,EAC1E,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,gBAAgB,CACpB,OAAoE,EACpE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,MAAM,CACV,OAAgE,EAChE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,kCAAc,EAC/B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED
|
|
1
|
+
{"version":3,"file":"feedback.js","sourceRoot":"","sources":["../src/sdk/feedback.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,kEAA4D;AAC5D,sFAAgF;AAChF,kEAA4D;AAC5D,sFAAgF;AAChF,4CAA2D;AAE3D,0CAA6C;AAE7C,MAAa,QAAS,SAAQ,mBAAS;IACrC,KAAK,CAAC,gBAAgB,CACpB,OAA0E,EAC1E,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,gBAAgB,CACpB,OAAoE,EACpE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,MAAM,CACV,OAAgE,EAChE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,kCAAc,EAC/B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,MAAM,CACV,OAA0D,EAC1D,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,kCAAc,EAC/B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AAlDD,4BAkDC"}
|
package/src/lib/config.ts
CHANGED
|
@@ -58,7 +58,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
58
58
|
export const SDK_METADATA = {
|
|
59
59
|
language: "typescript",
|
|
60
60
|
openapiDocVersion: "2.0",
|
|
61
|
-
sdkVersion: "4.12.
|
|
61
|
+
sdkVersion: "4.12.10",
|
|
62
62
|
genVersion: "2.924.0",
|
|
63
|
-
userAgent: "speakeasy-sdk/typescript 4.12.
|
|
63
|
+
userAgent: "speakeasy-sdk/typescript 4.12.10 2.924.0 2.0 @orq-ai/node",
|
|
64
64
|
} as const;
|
|
@@ -856,8 +856,8 @@ export const EvaluatorResponseFunction$inboundSchema: z.ZodType<
|
|
|
856
856
|
> = z.object({
|
|
857
857
|
_id: z.string(),
|
|
858
858
|
description: z.string(),
|
|
859
|
-
created: z.string().default("2026-07-
|
|
860
|
-
updated: z.string().default("2026-07-
|
|
859
|
+
created: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
860
|
+
updated: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
861
861
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
862
862
|
guardrail_config: z.any().optional(),
|
|
863
863
|
type: z.literal("function_eval"),
|
|
@@ -42,8 +42,8 @@ export const EvaluatorResponseHttp$inboundSchema: z.ZodType<
|
|
|
42
42
|
> = z.object({
|
|
43
43
|
_id: z.string(),
|
|
44
44
|
description: z.string(),
|
|
45
|
-
created: z.string().default("2026-07-
|
|
46
|
-
updated: z.string().default("2026-07-
|
|
45
|
+
created: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
46
|
+
updated: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
47
47
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
48
48
|
guardrail_config: z.any().optional(),
|
|
49
49
|
type: z.literal("http_eval"),
|
|
@@ -28,8 +28,8 @@ export const EvaluatorResponseJsonSchema$inboundSchema: z.ZodType<
|
|
|
28
28
|
> = z.object({
|
|
29
29
|
_id: z.string(),
|
|
30
30
|
description: z.string(),
|
|
31
|
-
created: z.string().default("2026-07-
|
|
32
|
-
updated: z.string().default("2026-07-
|
|
31
|
+
created: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
32
|
+
updated: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
33
33
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
34
34
|
guardrail_config: z.any().optional(),
|
|
35
35
|
type: z.literal("json_schema"),
|
|
@@ -267,8 +267,8 @@ export const EvaluatorResponseLlm$inboundSchema: z.ZodType<
|
|
|
267
267
|
> = z.object({
|
|
268
268
|
_id: z.string(),
|
|
269
269
|
description: z.string(),
|
|
270
|
-
created: z.string().default("2026-07-
|
|
271
|
-
updated: z.string().default("2026-07-
|
|
270
|
+
created: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
271
|
+
updated: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
272
272
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
273
273
|
guardrail_config: z.any().optional(),
|
|
274
274
|
type: z.literal("llm_eval"),
|
|
@@ -28,8 +28,8 @@ export const EvaluatorResponsePython$inboundSchema: z.ZodType<
|
|
|
28
28
|
> = z.object({
|
|
29
29
|
_id: z.string(),
|
|
30
30
|
description: z.string(),
|
|
31
|
-
created: z.string().default("2026-07-
|
|
32
|
-
updated: z.string().default("2026-07-
|
|
31
|
+
created: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
32
|
+
updated: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
33
33
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
34
34
|
guardrail_config: z.any().optional(),
|
|
35
35
|
code: z.string(),
|
|
@@ -50,8 +50,8 @@ export const EvaluatorResponseRagas$inboundSchema: z.ZodType<
|
|
|
50
50
|
> = z.object({
|
|
51
51
|
_id: z.string(),
|
|
52
52
|
description: z.string(),
|
|
53
|
-
created: z.string().default("2026-07-
|
|
54
|
-
updated: z.string().default("2026-07-
|
|
53
|
+
created: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
54
|
+
updated: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
55
55
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
56
56
|
guardrail_config: z.any().optional(),
|
|
57
57
|
type: z.literal("ragas"),
|
|
@@ -28,8 +28,8 @@ export const EvaluatorResponseTypescript$inboundSchema: z.ZodType<
|
|
|
28
28
|
> = z.object({
|
|
29
29
|
_id: z.string(),
|
|
30
30
|
description: z.string(),
|
|
31
|
-
created: z.string().default("2026-07-
|
|
32
|
-
updated: z.string().default("2026-07-
|
|
31
|
+
created: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
32
|
+
updated: z.string().default("2026-07-29T13:09:29.179Z"),
|
|
33
33
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
34
34
|
guardrail_config: z.any().optional(),
|
|
35
35
|
code: z.string(),
|
|
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
40
40
|
z.ZodTypeDef,
|
|
41
41
|
unknown
|
|
42
42
|
> = z.object({
|
|
43
|
-
_id: z.string().default("
|
|
43
|
+
_id: z.string().default("reasoning_01kypzxv603201b4hf219rkdxg"),
|
|
44
44
|
metadata: z.record(z.any()).optional(),
|
|
45
45
|
kind: z.literal("reasoning"),
|
|
46
46
|
reasoning: z.string(),
|
|
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
138
138
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
139
139
|
.optional(),
|
|
140
140
|
updated: z.string().datetime({ offset: true }).default(
|
|
141
|
-
"2026-07-
|
|
141
|
+
"2026-07-29T13:09:17.857Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -2732,7 +2732,7 @@ export const Evaluations4$inboundSchema: z.ZodType<
|
|
|
2732
2732
|
explanation: z.string().optional(),
|
|
2733
2733
|
reviewed_by_id: z.string(),
|
|
2734
2734
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2735
|
-
"2026-07-
|
|
2735
|
+
"2026-07-29T13:09:53.835Z",
|
|
2736
2736
|
).transform(v => new Date(v)),
|
|
2737
2737
|
type: z.literal("string_array"),
|
|
2738
2738
|
values: z.array(z.string()),
|
|
@@ -2822,7 +2822,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2822
2822
|
explanation: z.string().optional(),
|
|
2823
2823
|
reviewed_by_id: z.string(),
|
|
2824
2824
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2825
|
-
"2026-07-
|
|
2825
|
+
"2026-07-29T13:09:53.834Z",
|
|
2826
2826
|
).transform(v => new Date(v)),
|
|
2827
2827
|
type: z.literal("boolean"),
|
|
2828
2828
|
value: z.boolean(),
|
|
@@ -2907,7 +2907,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2907
2907
|
explanation: z.string().optional(),
|
|
2908
2908
|
reviewed_by_id: z.string(),
|
|
2909
2909
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2910
|
-
"2026-07-
|
|
2910
|
+
"2026-07-29T13:09:53.833Z",
|
|
2911
2911
|
).transform(v => new Date(v)),
|
|
2912
2912
|
type: z.literal("number"),
|
|
2913
2913
|
value: z.number(),
|
|
@@ -2993,7 +2993,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2993
2993
|
explanation: z.string().optional(),
|
|
2994
2994
|
reviewed_by_id: z.string(),
|
|
2995
2995
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2996
|
-
"2026-07-
|
|
2996
|
+
"2026-07-29T13:09:53.831Z",
|
|
2997
2997
|
).transform(v => new Date(v)),
|
|
2998
2998
|
type: z.literal("string"),
|
|
2999
2999
|
value: z.string(),
|
|
@@ -3080,7 +3080,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
3080
3080
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3081
3081
|
.optional(),
|
|
3082
3082
|
updated: z.string().datetime({ offset: true }).default(
|
|
3083
|
-
"2026-07-
|
|
3083
|
+
"2026-07-29T13:09:17.857Z",
|
|
3084
3084
|
).transform(v => new Date(v)),
|
|
3085
3085
|
}).transform((v) => {
|
|
3086
3086
|
return remap$(v, {
|
|
@@ -487,7 +487,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
487
487
|
z.ZodTypeDef,
|
|
488
488
|
unknown
|
|
489
489
|
> = z.object({
|
|
490
|
-
_id: z.string().default("
|
|
490
|
+
_id: z.string().default("01KYPZXVXSGEEQBN3XCFF5M8BK"),
|
|
491
491
|
display_name: z.string(),
|
|
492
492
|
description: z.nullable(z.string()).optional(),
|
|
493
493
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -1892,7 +1892,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1892
1892
|
z.ZodTypeDef,
|
|
1893
1893
|
unknown
|
|
1894
1894
|
> = z.object({
|
|
1895
|
-
_id: z.string().default("
|
|
1895
|
+
_id: z.string().default("tool_01KYPZXVPX44YGERGTGPSM21FM"),
|
|
1896
1896
|
path: z.string(),
|
|
1897
1897
|
key: z.string(),
|
|
1898
1898
|
display_name: z.string().optional(),
|
|
@@ -1989,7 +1989,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1989
1989
|
z.ZodTypeDef,
|
|
1990
1990
|
unknown
|
|
1991
1991
|
> = z.object({
|
|
1992
|
-
id: z.string().default("
|
|
1992
|
+
id: z.string().default("01KYPZXVPV7ES5APGZVV7MFJHC"),
|
|
1993
1993
|
name: z.string(),
|
|
1994
1994
|
description: z.string().optional(),
|
|
1995
1995
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2045,7 +2045,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2045
2045
|
z.ZodTypeDef,
|
|
2046
2046
|
unknown
|
|
2047
2047
|
> = z.object({
|
|
2048
|
-
_id: z.string().default("
|
|
2048
|
+
_id: z.string().default("tool_01KYPZXVPS6C8DNYDFWMD36C53"),
|
|
2049
2049
|
path: z.string(),
|
|
2050
2050
|
key: z.string(),
|
|
2051
2051
|
display_name: z.string().optional(),
|
|
@@ -2232,7 +2232,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2232
2232
|
z.ZodTypeDef,
|
|
2233
2233
|
unknown
|
|
2234
2234
|
> = z.object({
|
|
2235
|
-
_id: z.string().default("
|
|
2235
|
+
_id: z.string().default("tool_01KYPZXVPNYC2DFN52B6B8CNHX"),
|
|
2236
2236
|
path: z.string(),
|
|
2237
2237
|
key: z.string(),
|
|
2238
2238
|
display_name: z.string().optional(),
|
|
@@ -2325,7 +2325,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2325
2325
|
z.ZodTypeDef,
|
|
2326
2326
|
unknown
|
|
2327
2327
|
> = z.object({
|
|
2328
|
-
_id: z.string().default("
|
|
2328
|
+
_id: z.string().default("tool_01KYPZXVPHTZ0T117G6NEQVQNC"),
|
|
2329
2329
|
path: z.string(),
|
|
2330
2330
|
key: z.string(),
|
|
2331
2331
|
display_name: z.string().optional(),
|
|
@@ -2426,7 +2426,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2426
2426
|
z.ZodTypeDef,
|
|
2427
2427
|
unknown
|
|
2428
2428
|
> = z.object({
|
|
2429
|
-
_id: z.string().default("
|
|
2429
|
+
_id: z.string().default("tool_01KYPZXVPD44E4JBGKAQPMW1CB"),
|
|
2430
2430
|
path: z.string(),
|
|
2431
2431
|
key: z.string(),
|
|
2432
2432
|
display_name: z.string().optional(),
|
|
@@ -770,7 +770,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
770
770
|
z.ZodTypeDef,
|
|
771
771
|
unknown
|
|
772
772
|
> = z.object({
|
|
773
|
-
_id: z.string().default("
|
|
773
|
+
_id: z.string().default("tool_01KYPZXVNSYV1KFTV2YGZ62Y9E"),
|
|
774
774
|
path: z.string(),
|
|
775
775
|
key: z.string(),
|
|
776
776
|
display_name: z.string().optional(),
|
|
@@ -867,7 +867,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
867
867
|
z.ZodTypeDef,
|
|
868
868
|
unknown
|
|
869
869
|
> = z.object({
|
|
870
|
-
id: z.string().default("
|
|
870
|
+
id: z.string().default("01KYPZXVNR8J5Q9V8KAFBS4CQX"),
|
|
871
871
|
name: z.string(),
|
|
872
872
|
description: z.string().optional(),
|
|
873
873
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -920,7 +920,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
920
920
|
z.ZodTypeDef,
|
|
921
921
|
unknown
|
|
922
922
|
> = z.object({
|
|
923
|
-
_id: z.string().default("
|
|
923
|
+
_id: z.string().default("tool_01KYPZXVNNJ3HYQKG7K3B3D6M5"),
|
|
924
924
|
path: z.string(),
|
|
925
925
|
key: z.string(),
|
|
926
926
|
display_name: z.string().optional(),
|
|
@@ -1105,7 +1105,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1105
1105
|
z.ZodTypeDef,
|
|
1106
1106
|
unknown
|
|
1107
1107
|
> = z.object({
|
|
1108
|
-
_id: z.string().default("
|
|
1108
|
+
_id: z.string().default("tool_01KYPZXVNJS05MB39PEVNGV40B"),
|
|
1109
1109
|
path: z.string(),
|
|
1110
1110
|
key: z.string(),
|
|
1111
1111
|
display_name: z.string().optional(),
|
|
@@ -1198,7 +1198,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1198
1198
|
z.ZodTypeDef,
|
|
1199
1199
|
unknown
|
|
1200
1200
|
> = z.object({
|
|
1201
|
-
_id: z.string().default("
|
|
1201
|
+
_id: z.string().default("tool_01KYPZXVNFZ5NDTWG4D9PFEH8Z"),
|
|
1202
1202
|
path: z.string(),
|
|
1203
1203
|
key: z.string(),
|
|
1204
1204
|
display_name: z.string().optional(),
|
|
@@ -1296,7 +1296,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1296
1296
|
z.ZodTypeDef,
|
|
1297
1297
|
unknown
|
|
1298
1298
|
> = z.object({
|
|
1299
|
-
_id: z.string().default("
|
|
1299
|
+
_id: z.string().default("tool_01KYPZXVNDA6Z54EMTDC0YG9GS"),
|
|
1300
1300
|
path: z.string(),
|
|
1301
1301
|
key: z.string(),
|
|
1302
1302
|
display_name: z.string().optional(),
|
|
@@ -140,7 +140,7 @@ export const GetV2HumanEvalSetsResponseBody2$inboundSchema: z.ZodType<
|
|
|
140
140
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
141
141
|
.optional(),
|
|
142
142
|
updated: z.string().datetime({ offset: true }).default(
|
|
143
|
-
"2026-07-
|
|
143
|
+
"2026-07-29T13:09:17.857Z",
|
|
144
144
|
).transform(v => new Date(v)),
|
|
145
145
|
filter_type: z.literal("name"),
|
|
146
146
|
filter_value: z.string(),
|
|
@@ -185,7 +185,7 @@ export const GetV2HumanEvalSetsResponseBody1$inboundSchema: z.ZodType<
|
|
|
185
185
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
186
186
|
.optional(),
|
|
187
187
|
updated: z.string().datetime({ offset: true }).default(
|
|
188
|
-
"2026-07-
|
|
188
|
+
"2026-07-29T13:09:17.857Z",
|
|
189
189
|
).transform(v => new Date(v)),
|
|
190
190
|
filter_type: z.literal("span_type"),
|
|
191
191
|
filter_values: z.array(z.string()),
|
|
@@ -141,7 +141,7 @@ export const GetV2HumanEvalSetsIdResponseBody2$inboundSchema: z.ZodType<
|
|
|
141
141
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
142
142
|
.optional(),
|
|
143
143
|
updated: z.string().datetime({ offset: true }).default(
|
|
144
|
-
"2026-07-
|
|
144
|
+
"2026-07-29T13:09:17.857Z",
|
|
145
145
|
).transform(v => new Date(v)),
|
|
146
146
|
filter_type: z.literal("name"),
|
|
147
147
|
filter_value: z.string(),
|
|
@@ -186,7 +186,7 @@ export const GetV2HumanEvalSetsIdResponseBody1$inboundSchema: z.ZodType<
|
|
|
186
186
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
187
187
|
.optional(),
|
|
188
188
|
updated: z.string().datetime({ offset: true }).default(
|
|
189
|
-
"2026-07-
|
|
189
|
+
"2026-07-29T13:09:17.857Z",
|
|
190
190
|
).transform(v => new Date(v)),
|
|
191
191
|
filter_type: z.literal("span_type"),
|
|
192
192
|
filter_values: z.array(z.string()),
|