@orq-ai/node 4.1.6 → 4.1.8
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/bin/mcp-server.js +219 -219
- package/bin/mcp-server.js.map +39 -39
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrieveconversation.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- 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/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 -1
- package/packages/orq-rc/src/models/components/conversationresponse.ts +2 -2
- package/packages/orq-rc/src/models/components/partdoneevent.ts +2 -2
- package/packages/orq-rc/src/models/components/reasoningpart.ts +2 -2
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +164 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- 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/createtool.ts +12 -12
- 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/generateconversationname.ts +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +12 -12
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listagents.ts +84 -1
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- 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/retrieveagentrequest.ts +89 -1
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- 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/retrievetool.ts +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +85 -3
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +89 -3
- package/packages/orq-rc/src/models/operations/updateagent.ts +169 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateconversation.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- 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/models/operations/updatetool.ts +14 -14
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +12 -12
- 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/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- 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/retrieveconversation.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -931,7 +931,21 @@ export type RetrieveAgentRequestFallbackModelConfigurationParameters = {
|
|
|
931
931
|
};
|
|
932
932
|
|
|
933
933
|
/**
|
|
934
|
-
*
|
|
934
|
+
* Retry configuration for this fallback model. Allows customizing retry count (1-5) and HTTP status codes that trigger retries.
|
|
935
|
+
*/
|
|
936
|
+
export type RetrieveAgentRequestFallbackModelConfigurationRetry = {
|
|
937
|
+
/**
|
|
938
|
+
* Number of retry attempts (1-5)
|
|
939
|
+
*/
|
|
940
|
+
count?: number | undefined;
|
|
941
|
+
/**
|
|
942
|
+
* HTTP status codes that trigger retry logic
|
|
943
|
+
*/
|
|
944
|
+
onCodes?: Array<number> | undefined;
|
|
945
|
+
};
|
|
946
|
+
|
|
947
|
+
/**
|
|
948
|
+
* Fallback model configuration with optional parameters and retry settings.
|
|
935
949
|
*/
|
|
936
950
|
export type RetrieveAgentRequestFallbackModelConfiguration2 = {
|
|
937
951
|
/**
|
|
@@ -944,6 +958,10 @@ export type RetrieveAgentRequestFallbackModelConfiguration2 = {
|
|
|
944
958
|
parameters?:
|
|
945
959
|
| RetrieveAgentRequestFallbackModelConfigurationParameters
|
|
946
960
|
| undefined;
|
|
961
|
+
/**
|
|
962
|
+
* Retry configuration for this fallback model. Allows customizing retry count (1-5) and HTTP status codes that trigger retries.
|
|
963
|
+
*/
|
|
964
|
+
retry?: RetrieveAgentRequestFallbackModelConfigurationRetry | undefined;
|
|
947
965
|
};
|
|
948
966
|
|
|
949
967
|
/**
|
|
@@ -3473,6 +3491,67 @@ export function retrieveAgentRequestFallbackModelConfigurationParametersFromJSON
|
|
|
3473
3491
|
);
|
|
3474
3492
|
}
|
|
3475
3493
|
|
|
3494
|
+
/** @internal */
|
|
3495
|
+
export const RetrieveAgentRequestFallbackModelConfigurationRetry$inboundSchema:
|
|
3496
|
+
z.ZodType<
|
|
3497
|
+
RetrieveAgentRequestFallbackModelConfigurationRetry,
|
|
3498
|
+
z.ZodTypeDef,
|
|
3499
|
+
unknown
|
|
3500
|
+
> = z.object({
|
|
3501
|
+
count: z.number().default(3),
|
|
3502
|
+
on_codes: z.array(z.number()).optional(),
|
|
3503
|
+
}).transform((v) => {
|
|
3504
|
+
return remap$(v, {
|
|
3505
|
+
"on_codes": "onCodes",
|
|
3506
|
+
});
|
|
3507
|
+
});
|
|
3508
|
+
/** @internal */
|
|
3509
|
+
export type RetrieveAgentRequestFallbackModelConfigurationRetry$Outbound = {
|
|
3510
|
+
count: number;
|
|
3511
|
+
on_codes?: Array<number> | undefined;
|
|
3512
|
+
};
|
|
3513
|
+
|
|
3514
|
+
/** @internal */
|
|
3515
|
+
export const RetrieveAgentRequestFallbackModelConfigurationRetry$outboundSchema:
|
|
3516
|
+
z.ZodType<
|
|
3517
|
+
RetrieveAgentRequestFallbackModelConfigurationRetry$Outbound,
|
|
3518
|
+
z.ZodTypeDef,
|
|
3519
|
+
RetrieveAgentRequestFallbackModelConfigurationRetry
|
|
3520
|
+
> = z.object({
|
|
3521
|
+
count: z.number().default(3),
|
|
3522
|
+
onCodes: z.array(z.number()).optional(),
|
|
3523
|
+
}).transform((v) => {
|
|
3524
|
+
return remap$(v, {
|
|
3525
|
+
onCodes: "on_codes",
|
|
3526
|
+
});
|
|
3527
|
+
});
|
|
3528
|
+
|
|
3529
|
+
export function retrieveAgentRequestFallbackModelConfigurationRetryToJSON(
|
|
3530
|
+
retrieveAgentRequestFallbackModelConfigurationRetry:
|
|
3531
|
+
RetrieveAgentRequestFallbackModelConfigurationRetry,
|
|
3532
|
+
): string {
|
|
3533
|
+
return JSON.stringify(
|
|
3534
|
+
RetrieveAgentRequestFallbackModelConfigurationRetry$outboundSchema.parse(
|
|
3535
|
+
retrieveAgentRequestFallbackModelConfigurationRetry,
|
|
3536
|
+
),
|
|
3537
|
+
);
|
|
3538
|
+
}
|
|
3539
|
+
export function retrieveAgentRequestFallbackModelConfigurationRetryFromJSON(
|
|
3540
|
+
jsonString: string,
|
|
3541
|
+
): SafeParseResult<
|
|
3542
|
+
RetrieveAgentRequestFallbackModelConfigurationRetry,
|
|
3543
|
+
SDKValidationError
|
|
3544
|
+
> {
|
|
3545
|
+
return safeParse(
|
|
3546
|
+
jsonString,
|
|
3547
|
+
(x) =>
|
|
3548
|
+
RetrieveAgentRequestFallbackModelConfigurationRetry$inboundSchema.parse(
|
|
3549
|
+
JSON.parse(x),
|
|
3550
|
+
),
|
|
3551
|
+
`Failed to parse 'RetrieveAgentRequestFallbackModelConfigurationRetry' from JSON`,
|
|
3552
|
+
);
|
|
3553
|
+
}
|
|
3554
|
+
|
|
3476
3555
|
/** @internal */
|
|
3477
3556
|
export const RetrieveAgentRequestFallbackModelConfiguration2$inboundSchema:
|
|
3478
3557
|
z.ZodType<
|
|
@@ -3484,6 +3563,9 @@ export const RetrieveAgentRequestFallbackModelConfiguration2$inboundSchema:
|
|
|
3484
3563
|
parameters: z.lazy(() =>
|
|
3485
3564
|
RetrieveAgentRequestFallbackModelConfigurationParameters$inboundSchema
|
|
3486
3565
|
).optional(),
|
|
3566
|
+
retry: z.lazy(() =>
|
|
3567
|
+
RetrieveAgentRequestFallbackModelConfigurationRetry$inboundSchema
|
|
3568
|
+
).optional(),
|
|
3487
3569
|
});
|
|
3488
3570
|
/** @internal */
|
|
3489
3571
|
export type RetrieveAgentRequestFallbackModelConfiguration2$Outbound = {
|
|
@@ -3491,6 +3573,9 @@ export type RetrieveAgentRequestFallbackModelConfiguration2$Outbound = {
|
|
|
3491
3573
|
parameters?:
|
|
3492
3574
|
| RetrieveAgentRequestFallbackModelConfigurationParameters$Outbound
|
|
3493
3575
|
| undefined;
|
|
3576
|
+
retry?:
|
|
3577
|
+
| RetrieveAgentRequestFallbackModelConfigurationRetry$Outbound
|
|
3578
|
+
| undefined;
|
|
3494
3579
|
};
|
|
3495
3580
|
|
|
3496
3581
|
/** @internal */
|
|
@@ -3504,6 +3589,9 @@ export const RetrieveAgentRequestFallbackModelConfiguration2$outboundSchema:
|
|
|
3504
3589
|
parameters: z.lazy(() =>
|
|
3505
3590
|
RetrieveAgentRequestFallbackModelConfigurationParameters$outboundSchema
|
|
3506
3591
|
).optional(),
|
|
3592
|
+
retry: z.lazy(() =>
|
|
3593
|
+
RetrieveAgentRequestFallbackModelConfigurationRetry$outboundSchema
|
|
3594
|
+
).optional(),
|
|
3507
3595
|
});
|
|
3508
3596
|
|
|
3509
3597
|
export function retrieveAgentRequestFallbackModelConfiguration2ToJSON(
|
|
@@ -112,7 +112,7 @@ export const RetrieveContactResponseBody$inboundSchema: z.ZodType<
|
|
|
112
112
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
113
113
|
.optional(),
|
|
114
114
|
updated: z.string().datetime({ offset: true }).default(
|
|
115
|
-
"2026-01-
|
|
115
|
+
"2026-01-07T04:59:57.150Z",
|
|
116
116
|
).transform(v => new Date(v)),
|
|
117
117
|
}).transform((v) => {
|
|
118
118
|
return remap$(v, {
|
|
@@ -149,7 +149,7 @@ export const RetrieveContactResponseBody$outboundSchema: z.ZodType<
|
|
|
149
149
|
tags: z.array(z.string()).optional(),
|
|
150
150
|
metadata: z.record(z.any()).optional(),
|
|
151
151
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
152
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
152
|
+
updated: z.date().default(() => new Date("2026-01-07T04:59:57.150Z"))
|
|
153
153
|
.transform(v => v.toISOString()),
|
|
154
154
|
}).transform((v) => {
|
|
155
155
|
return remap$(v, {
|
|
@@ -193,7 +193,7 @@ export const RetrieveConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
193
193
|
z.ZodTypeDef,
|
|
194
194
|
unknown
|
|
195
195
|
> = z.object({
|
|
196
|
-
_id: z.string().default("
|
|
196
|
+
_id: z.string().default("conv_01kebd76qh7490qsq0ge3zt5qm"),
|
|
197
197
|
entityId: z.string(),
|
|
198
198
|
kind: RetrieveConversationKind$inboundSchema,
|
|
199
199
|
displayName: z.string(),
|
|
@@ -226,7 +226,7 @@ export const RetrieveConversationResponseBody$outboundSchema: z.ZodType<
|
|
|
226
226
|
z.ZodTypeDef,
|
|
227
227
|
RetrieveConversationResponseBody
|
|
228
228
|
> = z.object({
|
|
229
|
-
id: z.string().default("
|
|
229
|
+
id: z.string().default("conv_01kebd76qh7490qsq0ge3zt5qm"),
|
|
230
230
|
entityId: z.string(),
|
|
231
231
|
kind: RetrieveConversationKind$outboundSchema,
|
|
232
232
|
displayName: z.string(),
|
|
@@ -1878,7 +1878,7 @@ export const RetrieveDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
1878
1878
|
.default("orq"),
|
|
1879
1879
|
reviewed_by_id: z.string(),
|
|
1880
1880
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1881
|
-
"2026-01-
|
|
1881
|
+
"2026-01-07T05:00:09.348Z",
|
|
1882
1882
|
).transform(v => new Date(v)),
|
|
1883
1883
|
type: z.literal("string_array"),
|
|
1884
1884
|
values: z.array(z.string()),
|
|
@@ -1915,7 +1915,7 @@ export const RetrieveDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
1915
1915
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
1916
1916
|
.default("orq"),
|
|
1917
1917
|
reviewedById: z.string(),
|
|
1918
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
1918
|
+
reviewedAt: z.date().default(() => new Date("2026-01-07T05:00:09.348Z"))
|
|
1919
1919
|
.transform(v => v.toISOString()),
|
|
1920
1920
|
type: z.literal("string_array"),
|
|
1921
1921
|
values: z.array(z.string()),
|
|
@@ -1980,7 +1980,7 @@ export const RetrieveDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
1980
1980
|
),
|
|
1981
1981
|
reviewed_by_id: z.string(),
|
|
1982
1982
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1983
|
-
"2026-01-
|
|
1983
|
+
"2026-01-07T05:00:09.346Z",
|
|
1984
1984
|
).transform(v => new Date(v)),
|
|
1985
1985
|
type: z.literal("number"),
|
|
1986
1986
|
value: z.number(),
|
|
@@ -2018,7 +2018,7 @@ export const RetrieveDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
2018
2018
|
"orq",
|
|
2019
2019
|
),
|
|
2020
2020
|
reviewedById: z.string(),
|
|
2021
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
2021
|
+
reviewedAt: z.date().default(() => new Date("2026-01-07T05:00:09.346Z"))
|
|
2022
2022
|
.transform(v => v.toISOString()),
|
|
2023
2023
|
type: z.literal("number"),
|
|
2024
2024
|
value: z.number(),
|
|
@@ -2080,7 +2080,7 @@ export const RetrieveDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
2080
2080
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
2081
2081
|
reviewed_by_id: z.string(),
|
|
2082
2082
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2083
|
-
"2026-01-
|
|
2083
|
+
"2026-01-07T05:00:09.343Z",
|
|
2084
2084
|
).transform(v => new Date(v)),
|
|
2085
2085
|
type: z.literal("string"),
|
|
2086
2086
|
value: z.string(),
|
|
@@ -2115,7 +2115,7 @@ export const RetrieveDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
2115
2115
|
humanReviewId: z.string(),
|
|
2116
2116
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
2117
2117
|
reviewedById: z.string(),
|
|
2118
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
2118
|
+
reviewedAt: z.date().default(() => new Date("2026-01-07T05:00:09.343Z"))
|
|
2119
2119
|
.transform(v => v.toISOString()),
|
|
2120
2120
|
type: z.literal("string"),
|
|
2121
2121
|
value: z.string(),
|
|
@@ -2226,7 +2226,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
2226
2226
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2227
2227
|
.optional(),
|
|
2228
2228
|
updated: z.string().datetime({ offset: true }).default(
|
|
2229
|
-
"2026-01-
|
|
2229
|
+
"2026-01-07T04:59:57.150Z",
|
|
2230
2230
|
).transform(v => new Date(v)),
|
|
2231
2231
|
}).transform((v) => {
|
|
2232
2232
|
return remap$(v, {
|
|
@@ -2300,7 +2300,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
2300
2300
|
createdById: z.string().optional(),
|
|
2301
2301
|
updatedById: z.string().optional(),
|
|
2302
2302
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
2303
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
2303
|
+
updated: z.date().default(() => new Date("2026-01-07T04:59:57.150Z"))
|
|
2304
2304
|
.transform(v => v.toISOString()),
|
|
2305
2305
|
}).transform((v) => {
|
|
2306
2306
|
return remap$(v, {
|
|
@@ -174,7 +174,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
174
174
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
175
175
|
.optional(),
|
|
176
176
|
updated: z.string().datetime({ offset: true }).default(
|
|
177
|
-
"2026-01-
|
|
177
|
+
"2026-01-07T04:59:57.150Z",
|
|
178
178
|
).transform(v => new Date(v)),
|
|
179
179
|
}).transform((v) => {
|
|
180
180
|
return remap$(v, {
|
|
@@ -213,7 +213,7 @@ export const RetrieveDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
213
213
|
createdById: z.string().optional(),
|
|
214
214
|
updatedById: z.string().optional(),
|
|
215
215
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
216
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
216
|
+
updated: z.date().default(() => new Date("2026-01-07T04:59:57.150Z"))
|
|
217
217
|
.transform(v => v.toISOString()),
|
|
218
218
|
}).transform((v) => {
|
|
219
219
|
return remap$(v, {
|
|
@@ -145,7 +145,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
145
145
|
z.ZodTypeDef,
|
|
146
146
|
unknown
|
|
147
147
|
> = z.object({
|
|
148
|
-
_id: z.string().default("
|
|
148
|
+
_id: z.string().default("01KEBD7753E6SYHKVPM2HABQJP"),
|
|
149
149
|
display_name: z.string(),
|
|
150
150
|
description: z.string().optional(),
|
|
151
151
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -188,7 +188,7 @@ export const RetrieveDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
188
188
|
z.ZodTypeDef,
|
|
189
189
|
RetrieveDatasourceResponseBody
|
|
190
190
|
> = z.object({
|
|
191
|
-
id: z.string().default("
|
|
191
|
+
id: z.string().default("01KEBD7753E6SYHKVPM2HABQJP"),
|
|
192
192
|
displayName: z.string(),
|
|
193
193
|
description: z.string().optional(),
|
|
194
194
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -858,7 +858,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
858
858
|
z.ZodTypeDef,
|
|
859
859
|
unknown
|
|
860
860
|
> = z.object({
|
|
861
|
-
_id: z.string().default("
|
|
861
|
+
_id: z.string().default("tool_01KEBD771Z3E3FWPTE6PS9CVYW"),
|
|
862
862
|
path: z.string(),
|
|
863
863
|
key: z.string(),
|
|
864
864
|
display_name: z.string().optional(),
|
|
@@ -913,7 +913,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$outboundSchema:
|
|
|
913
913
|
z.ZodTypeDef,
|
|
914
914
|
RetrieveToolResponseBodyCodeExecutionTool
|
|
915
915
|
> = z.object({
|
|
916
|
-
id: z.string().default("
|
|
916
|
+
id: z.string().default("tool_01KEBD771Z3E3FWPTE6PS9CVYW"),
|
|
917
917
|
path: z.string(),
|
|
918
918
|
key: z.string(),
|
|
919
919
|
displayName: z.string().optional(),
|
|
@@ -1092,7 +1092,7 @@ export const RetrieveToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1092
1092
|
z.ZodTypeDef,
|
|
1093
1093
|
unknown
|
|
1094
1094
|
> = z.object({
|
|
1095
|
-
id: z.string().default("
|
|
1095
|
+
id: z.string().default("01KEBD771YZEMRPAXMHYEPYF3J"),
|
|
1096
1096
|
name: z.string(),
|
|
1097
1097
|
description: z.string().optional(),
|
|
1098
1098
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -1111,7 +1111,7 @@ export const RetrieveToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1111
1111
|
z.ZodTypeDef,
|
|
1112
1112
|
RetrieveToolResponseBodyTools
|
|
1113
1113
|
> = z.object({
|
|
1114
|
-
id: z.string().default("
|
|
1114
|
+
id: z.string().default("01KEBD771YZEMRPAXMHYEPYF3J"),
|
|
1115
1115
|
name: z.string(),
|
|
1116
1116
|
description: z.string().optional(),
|
|
1117
1117
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1217,7 +1217,7 @@ export const RetrieveToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
1217
1217
|
z.ZodTypeDef,
|
|
1218
1218
|
unknown
|
|
1219
1219
|
> = z.object({
|
|
1220
|
-
_id: z.string().default("
|
|
1220
|
+
_id: z.string().default("tool_01KEBD771NNQ74P9AX6V9TA7X4"),
|
|
1221
1221
|
path: z.string(),
|
|
1222
1222
|
key: z.string(),
|
|
1223
1223
|
display_name: z.string().optional(),
|
|
@@ -1270,7 +1270,7 @@ export const RetrieveToolResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
1270
1270
|
z.ZodTypeDef,
|
|
1271
1271
|
RetrieveToolResponseBodyMCPTool
|
|
1272
1272
|
> = z.object({
|
|
1273
|
-
id: z.string().default("
|
|
1273
|
+
id: z.string().default("tool_01KEBD771NNQ74P9AX6V9TA7X4"),
|
|
1274
1274
|
path: z.string(),
|
|
1275
1275
|
key: z.string(),
|
|
1276
1276
|
displayName: z.string().optional(),
|
|
@@ -1641,7 +1641,7 @@ export const RetrieveToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
1641
1641
|
z.ZodTypeDef,
|
|
1642
1642
|
unknown
|
|
1643
1643
|
> = z.object({
|
|
1644
|
-
_id: z.string().default("
|
|
1644
|
+
_id: z.string().default("tool_01KEBD771J15RPZJG6YKAD6EZA"),
|
|
1645
1645
|
path: z.string(),
|
|
1646
1646
|
key: z.string(),
|
|
1647
1647
|
display_name: z.string().optional(),
|
|
@@ -1694,7 +1694,7 @@ export const RetrieveToolResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
1694
1694
|
z.ZodTypeDef,
|
|
1695
1695
|
RetrieveToolResponseBodyHTTPTool
|
|
1696
1696
|
> = z.object({
|
|
1697
|
-
id: z.string().default("
|
|
1697
|
+
id: z.string().default("tool_01KEBD771J15RPZJG6YKAD6EZA"),
|
|
1698
1698
|
path: z.string(),
|
|
1699
1699
|
key: z.string(),
|
|
1700
1700
|
displayName: z.string().optional(),
|
|
@@ -1868,7 +1868,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1868
1868
|
z.ZodTypeDef,
|
|
1869
1869
|
unknown
|
|
1870
1870
|
> = z.object({
|
|
1871
|
-
_id: z.string().default("
|
|
1871
|
+
_id: z.string().default("tool_01KEBD771GMP36DCRVMB2CR0GW"),
|
|
1872
1872
|
path: z.string(),
|
|
1873
1873
|
key: z.string(),
|
|
1874
1874
|
display_name: z.string().optional(),
|
|
@@ -1920,7 +1920,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
1920
1920
|
z.ZodTypeDef,
|
|
1921
1921
|
RetrieveToolResponseBodyJSONSchemaTool
|
|
1922
1922
|
> = z.object({
|
|
1923
|
-
id: z.string().default("
|
|
1923
|
+
id: z.string().default("tool_01KEBD771GMP36DCRVMB2CR0GW"),
|
|
1924
1924
|
path: z.string(),
|
|
1925
1925
|
key: z.string(),
|
|
1926
1926
|
displayName: z.string().optional(),
|
|
@@ -2113,7 +2113,7 @@ export const RetrieveToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2113
2113
|
z.ZodTypeDef,
|
|
2114
2114
|
unknown
|
|
2115
2115
|
> = z.object({
|
|
2116
|
-
_id: z.string().default("
|
|
2116
|
+
_id: z.string().default("tool_01KEBD771FP8S7CR87793RGT9T"),
|
|
2117
2117
|
path: z.string(),
|
|
2118
2118
|
key: z.string(),
|
|
2119
2119
|
display_name: z.string().optional(),
|
|
@@ -2164,7 +2164,7 @@ export const RetrieveToolResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
2164
2164
|
z.ZodTypeDef,
|
|
2165
2165
|
RetrieveToolResponseBodyFunctionTool
|
|
2166
2166
|
> = z.object({
|
|
2167
|
-
id: z.string().default("
|
|
2167
|
+
id: z.string().default("tool_01KEBD771FP8S7CR87793RGT9T"),
|
|
2168
2168
|
path: z.string(),
|
|
2169
2169
|
key: z.string(),
|
|
2170
2170
|
displayName: z.string().optional(),
|
|
@@ -778,7 +778,21 @@ export type RunAgentFallbackModelConfigurationParameters = {
|
|
|
778
778
|
};
|
|
779
779
|
|
|
780
780
|
/**
|
|
781
|
-
*
|
|
781
|
+
* Retry configuration for this fallback model. Allows customizing retry count (1-5) and HTTP status codes that trigger retries.
|
|
782
|
+
*/
|
|
783
|
+
export type RunAgentFallbackModelConfigurationRetry = {
|
|
784
|
+
/**
|
|
785
|
+
* Number of retry attempts (1-5)
|
|
786
|
+
*/
|
|
787
|
+
count?: number | undefined;
|
|
788
|
+
/**
|
|
789
|
+
* HTTP status codes that trigger retry logic
|
|
790
|
+
*/
|
|
791
|
+
onCodes?: Array<number> | undefined;
|
|
792
|
+
};
|
|
793
|
+
|
|
794
|
+
/**
|
|
795
|
+
* Fallback model configuration with optional parameters and retry settings.
|
|
782
796
|
*/
|
|
783
797
|
export type RunAgentFallbackModelConfiguration2 = {
|
|
784
798
|
/**
|
|
@@ -789,6 +803,10 @@ export type RunAgentFallbackModelConfiguration2 = {
|
|
|
789
803
|
* Optional model parameters specific to this fallback model. Overrides primary model parameters if this fallback is used.
|
|
790
804
|
*/
|
|
791
805
|
parameters?: RunAgentFallbackModelConfigurationParameters | undefined;
|
|
806
|
+
/**
|
|
807
|
+
* Retry configuration for this fallback model. Allows customizing retry count (1-5) and HTTP status codes that trigger retries.
|
|
808
|
+
*/
|
|
809
|
+
retry?: RunAgentFallbackModelConfigurationRetry | undefined;
|
|
792
810
|
};
|
|
793
811
|
|
|
794
812
|
/**
|
|
@@ -3717,6 +3735,65 @@ export function runAgentFallbackModelConfigurationParametersFromJSON(
|
|
|
3717
3735
|
);
|
|
3718
3736
|
}
|
|
3719
3737
|
|
|
3738
|
+
/** @internal */
|
|
3739
|
+
export const RunAgentFallbackModelConfigurationRetry$inboundSchema: z.ZodType<
|
|
3740
|
+
RunAgentFallbackModelConfigurationRetry,
|
|
3741
|
+
z.ZodTypeDef,
|
|
3742
|
+
unknown
|
|
3743
|
+
> = z.object({
|
|
3744
|
+
count: z.number().default(3),
|
|
3745
|
+
on_codes: z.array(z.number()).optional(),
|
|
3746
|
+
}).transform((v) => {
|
|
3747
|
+
return remap$(v, {
|
|
3748
|
+
"on_codes": "onCodes",
|
|
3749
|
+
});
|
|
3750
|
+
});
|
|
3751
|
+
/** @internal */
|
|
3752
|
+
export type RunAgentFallbackModelConfigurationRetry$Outbound = {
|
|
3753
|
+
count: number;
|
|
3754
|
+
on_codes?: Array<number> | undefined;
|
|
3755
|
+
};
|
|
3756
|
+
|
|
3757
|
+
/** @internal */
|
|
3758
|
+
export const RunAgentFallbackModelConfigurationRetry$outboundSchema: z.ZodType<
|
|
3759
|
+
RunAgentFallbackModelConfigurationRetry$Outbound,
|
|
3760
|
+
z.ZodTypeDef,
|
|
3761
|
+
RunAgentFallbackModelConfigurationRetry
|
|
3762
|
+
> = z.object({
|
|
3763
|
+
count: z.number().default(3),
|
|
3764
|
+
onCodes: z.array(z.number()).optional(),
|
|
3765
|
+
}).transform((v) => {
|
|
3766
|
+
return remap$(v, {
|
|
3767
|
+
onCodes: "on_codes",
|
|
3768
|
+
});
|
|
3769
|
+
});
|
|
3770
|
+
|
|
3771
|
+
export function runAgentFallbackModelConfigurationRetryToJSON(
|
|
3772
|
+
runAgentFallbackModelConfigurationRetry:
|
|
3773
|
+
RunAgentFallbackModelConfigurationRetry,
|
|
3774
|
+
): string {
|
|
3775
|
+
return JSON.stringify(
|
|
3776
|
+
RunAgentFallbackModelConfigurationRetry$outboundSchema.parse(
|
|
3777
|
+
runAgentFallbackModelConfigurationRetry,
|
|
3778
|
+
),
|
|
3779
|
+
);
|
|
3780
|
+
}
|
|
3781
|
+
export function runAgentFallbackModelConfigurationRetryFromJSON(
|
|
3782
|
+
jsonString: string,
|
|
3783
|
+
): SafeParseResult<
|
|
3784
|
+
RunAgentFallbackModelConfigurationRetry,
|
|
3785
|
+
SDKValidationError
|
|
3786
|
+
> {
|
|
3787
|
+
return safeParse(
|
|
3788
|
+
jsonString,
|
|
3789
|
+
(x) =>
|
|
3790
|
+
RunAgentFallbackModelConfigurationRetry$inboundSchema.parse(
|
|
3791
|
+
JSON.parse(x),
|
|
3792
|
+
),
|
|
3793
|
+
`Failed to parse 'RunAgentFallbackModelConfigurationRetry' from JSON`,
|
|
3794
|
+
);
|
|
3795
|
+
}
|
|
3796
|
+
|
|
3720
3797
|
/** @internal */
|
|
3721
3798
|
export const RunAgentFallbackModelConfiguration2$inboundSchema: z.ZodType<
|
|
3722
3799
|
RunAgentFallbackModelConfiguration2,
|
|
@@ -3727,6 +3804,8 @@ export const RunAgentFallbackModelConfiguration2$inboundSchema: z.ZodType<
|
|
|
3727
3804
|
parameters: z.lazy(() =>
|
|
3728
3805
|
RunAgentFallbackModelConfigurationParameters$inboundSchema
|
|
3729
3806
|
).optional(),
|
|
3807
|
+
retry: z.lazy(() => RunAgentFallbackModelConfigurationRetry$inboundSchema)
|
|
3808
|
+
.optional(),
|
|
3730
3809
|
});
|
|
3731
3810
|
/** @internal */
|
|
3732
3811
|
export type RunAgentFallbackModelConfiguration2$Outbound = {
|
|
@@ -3734,6 +3813,7 @@ export type RunAgentFallbackModelConfiguration2$Outbound = {
|
|
|
3734
3813
|
parameters?:
|
|
3735
3814
|
| RunAgentFallbackModelConfigurationParameters$Outbound
|
|
3736
3815
|
| undefined;
|
|
3816
|
+
retry?: RunAgentFallbackModelConfigurationRetry$Outbound | undefined;
|
|
3737
3817
|
};
|
|
3738
3818
|
|
|
3739
3819
|
/** @internal */
|
|
@@ -3746,6 +3826,8 @@ export const RunAgentFallbackModelConfiguration2$outboundSchema: z.ZodType<
|
|
|
3746
3826
|
parameters: z.lazy(() =>
|
|
3747
3827
|
RunAgentFallbackModelConfigurationParameters$outboundSchema
|
|
3748
3828
|
).optional(),
|
|
3829
|
+
retry: z.lazy(() => RunAgentFallbackModelConfigurationRetry$outboundSchema)
|
|
3830
|
+
.optional(),
|
|
3749
3831
|
});
|
|
3750
3832
|
|
|
3751
3833
|
export function runAgentFallbackModelConfiguration2ToJSON(
|
|
@@ -4307,7 +4389,7 @@ export function schemaFromJSON(
|
|
|
4307
4389
|
/** @internal */
|
|
4308
4390
|
export const Tools$inboundSchema: z.ZodType<Tools, z.ZodTypeDef, unknown> = z
|
|
4309
4391
|
.object({
|
|
4310
|
-
id: z.string().default("
|
|
4392
|
+
id: z.string().default("01KEBD76JYEN07DCRE7P14A8MW"),
|
|
4311
4393
|
name: z.string(),
|
|
4312
4394
|
description: z.string().optional(),
|
|
4313
4395
|
schema: z.lazy(() => Schema$inboundSchema),
|
|
@@ -4326,7 +4408,7 @@ export const Tools$outboundSchema: z.ZodType<
|
|
|
4326
4408
|
z.ZodTypeDef,
|
|
4327
4409
|
Tools
|
|
4328
4410
|
> = z.object({
|
|
4329
|
-
id: z.string().default("
|
|
4411
|
+
id: z.string().default("01KEBD76JYEN07DCRE7P14A8MW"),
|
|
4330
4412
|
name: z.string(),
|
|
4331
4413
|
description: z.string().optional(),
|
|
4332
4414
|
schema: z.lazy(() => Schema$outboundSchema),
|
|
@@ -800,7 +800,21 @@ export type StreamRunAgentFallbackModelConfigurationParameters = {
|
|
|
800
800
|
};
|
|
801
801
|
|
|
802
802
|
/**
|
|
803
|
-
*
|
|
803
|
+
* Retry configuration for this fallback model. Allows customizing retry count (1-5) and HTTP status codes that trigger retries.
|
|
804
|
+
*/
|
|
805
|
+
export type StreamRunAgentFallbackModelConfigurationRetry = {
|
|
806
|
+
/**
|
|
807
|
+
* Number of retry attempts (1-5)
|
|
808
|
+
*/
|
|
809
|
+
count?: number | undefined;
|
|
810
|
+
/**
|
|
811
|
+
* HTTP status codes that trigger retry logic
|
|
812
|
+
*/
|
|
813
|
+
onCodes?: Array<number> | undefined;
|
|
814
|
+
};
|
|
815
|
+
|
|
816
|
+
/**
|
|
817
|
+
* Fallback model configuration with optional parameters and retry settings.
|
|
804
818
|
*/
|
|
805
819
|
export type StreamRunAgentFallbackModelConfiguration2 = {
|
|
806
820
|
/**
|
|
@@ -811,6 +825,10 @@ export type StreamRunAgentFallbackModelConfiguration2 = {
|
|
|
811
825
|
* Optional model parameters specific to this fallback model. Overrides primary model parameters if this fallback is used.
|
|
812
826
|
*/
|
|
813
827
|
parameters?: StreamRunAgentFallbackModelConfigurationParameters | undefined;
|
|
828
|
+
/**
|
|
829
|
+
* Retry configuration for this fallback model. Allows customizing retry count (1-5) and HTTP status codes that trigger retries.
|
|
830
|
+
*/
|
|
831
|
+
retry?: StreamRunAgentFallbackModelConfigurationRetry | undefined;
|
|
814
832
|
};
|
|
815
833
|
|
|
816
834
|
/**
|
|
@@ -3793,6 +3811,67 @@ export function streamRunAgentFallbackModelConfigurationParametersFromJSON(
|
|
|
3793
3811
|
);
|
|
3794
3812
|
}
|
|
3795
3813
|
|
|
3814
|
+
/** @internal */
|
|
3815
|
+
export const StreamRunAgentFallbackModelConfigurationRetry$inboundSchema:
|
|
3816
|
+
z.ZodType<
|
|
3817
|
+
StreamRunAgentFallbackModelConfigurationRetry,
|
|
3818
|
+
z.ZodTypeDef,
|
|
3819
|
+
unknown
|
|
3820
|
+
> = z.object({
|
|
3821
|
+
count: z.number().default(3),
|
|
3822
|
+
on_codes: z.array(z.number()).optional(),
|
|
3823
|
+
}).transform((v) => {
|
|
3824
|
+
return remap$(v, {
|
|
3825
|
+
"on_codes": "onCodes",
|
|
3826
|
+
});
|
|
3827
|
+
});
|
|
3828
|
+
/** @internal */
|
|
3829
|
+
export type StreamRunAgentFallbackModelConfigurationRetry$Outbound = {
|
|
3830
|
+
count: number;
|
|
3831
|
+
on_codes?: Array<number> | undefined;
|
|
3832
|
+
};
|
|
3833
|
+
|
|
3834
|
+
/** @internal */
|
|
3835
|
+
export const StreamRunAgentFallbackModelConfigurationRetry$outboundSchema:
|
|
3836
|
+
z.ZodType<
|
|
3837
|
+
StreamRunAgentFallbackModelConfigurationRetry$Outbound,
|
|
3838
|
+
z.ZodTypeDef,
|
|
3839
|
+
StreamRunAgentFallbackModelConfigurationRetry
|
|
3840
|
+
> = z.object({
|
|
3841
|
+
count: z.number().default(3),
|
|
3842
|
+
onCodes: z.array(z.number()).optional(),
|
|
3843
|
+
}).transform((v) => {
|
|
3844
|
+
return remap$(v, {
|
|
3845
|
+
onCodes: "on_codes",
|
|
3846
|
+
});
|
|
3847
|
+
});
|
|
3848
|
+
|
|
3849
|
+
export function streamRunAgentFallbackModelConfigurationRetryToJSON(
|
|
3850
|
+
streamRunAgentFallbackModelConfigurationRetry:
|
|
3851
|
+
StreamRunAgentFallbackModelConfigurationRetry,
|
|
3852
|
+
): string {
|
|
3853
|
+
return JSON.stringify(
|
|
3854
|
+
StreamRunAgentFallbackModelConfigurationRetry$outboundSchema.parse(
|
|
3855
|
+
streamRunAgentFallbackModelConfigurationRetry,
|
|
3856
|
+
),
|
|
3857
|
+
);
|
|
3858
|
+
}
|
|
3859
|
+
export function streamRunAgentFallbackModelConfigurationRetryFromJSON(
|
|
3860
|
+
jsonString: string,
|
|
3861
|
+
): SafeParseResult<
|
|
3862
|
+
StreamRunAgentFallbackModelConfigurationRetry,
|
|
3863
|
+
SDKValidationError
|
|
3864
|
+
> {
|
|
3865
|
+
return safeParse(
|
|
3866
|
+
jsonString,
|
|
3867
|
+
(x) =>
|
|
3868
|
+
StreamRunAgentFallbackModelConfigurationRetry$inboundSchema.parse(
|
|
3869
|
+
JSON.parse(x),
|
|
3870
|
+
),
|
|
3871
|
+
`Failed to parse 'StreamRunAgentFallbackModelConfigurationRetry' from JSON`,
|
|
3872
|
+
);
|
|
3873
|
+
}
|
|
3874
|
+
|
|
3796
3875
|
/** @internal */
|
|
3797
3876
|
export const StreamRunAgentFallbackModelConfiguration2$inboundSchema: z.ZodType<
|
|
3798
3877
|
StreamRunAgentFallbackModelConfiguration2,
|
|
@@ -3803,6 +3882,9 @@ export const StreamRunAgentFallbackModelConfiguration2$inboundSchema: z.ZodType<
|
|
|
3803
3882
|
parameters: z.lazy(() =>
|
|
3804
3883
|
StreamRunAgentFallbackModelConfigurationParameters$inboundSchema
|
|
3805
3884
|
).optional(),
|
|
3885
|
+
retry: z.lazy(() =>
|
|
3886
|
+
StreamRunAgentFallbackModelConfigurationRetry$inboundSchema
|
|
3887
|
+
).optional(),
|
|
3806
3888
|
});
|
|
3807
3889
|
/** @internal */
|
|
3808
3890
|
export type StreamRunAgentFallbackModelConfiguration2$Outbound = {
|
|
@@ -3810,6 +3892,7 @@ export type StreamRunAgentFallbackModelConfiguration2$Outbound = {
|
|
|
3810
3892
|
parameters?:
|
|
3811
3893
|
| StreamRunAgentFallbackModelConfigurationParameters$Outbound
|
|
3812
3894
|
| undefined;
|
|
3895
|
+
retry?: StreamRunAgentFallbackModelConfigurationRetry$Outbound | undefined;
|
|
3813
3896
|
};
|
|
3814
3897
|
|
|
3815
3898
|
/** @internal */
|
|
@@ -3823,6 +3906,9 @@ export const StreamRunAgentFallbackModelConfiguration2$outboundSchema:
|
|
|
3823
3906
|
parameters: z.lazy(() =>
|
|
3824
3907
|
StreamRunAgentFallbackModelConfigurationParameters$outboundSchema
|
|
3825
3908
|
).optional(),
|
|
3909
|
+
retry: z.lazy(() =>
|
|
3910
|
+
StreamRunAgentFallbackModelConfigurationRetry$outboundSchema
|
|
3911
|
+
).optional(),
|
|
3826
3912
|
});
|
|
3827
3913
|
|
|
3828
3914
|
export function streamRunAgentFallbackModelConfiguration2ToJSON(
|
|
@@ -4435,7 +4521,7 @@ export const AgentToolInputRunTools$inboundSchema: z.ZodType<
|
|
|
4435
4521
|
z.ZodTypeDef,
|
|
4436
4522
|
unknown
|
|
4437
4523
|
> = z.object({
|
|
4438
|
-
id: z.string().default("
|
|
4524
|
+
id: z.string().default("01KEBD76NBWT9KWM55NJ5A29JA"),
|
|
4439
4525
|
name: z.string(),
|
|
4440
4526
|
description: z.string().optional(),
|
|
4441
4527
|
schema: z.lazy(() => AgentToolInputRunSchema$inboundSchema),
|
|
@@ -4454,7 +4540,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
4454
4540
|
z.ZodTypeDef,
|
|
4455
4541
|
AgentToolInputRunTools
|
|
4456
4542
|
> = z.object({
|
|
4457
|
-
id: z.string().default("
|
|
4543
|
+
id: z.string().default("01KEBD76NBWT9KWM55NJ5A29JA"),
|
|
4458
4544
|
name: z.string(),
|
|
4459
4545
|
description: z.string().optional(),
|
|
4460
4546
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|