@orq-ai/node 3.10.9 → 3.10.11
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 +261 -131
- package/bin/mcp-server.js.map +35 -35
- 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/lib/config.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/mcp-server.js.map +1 -1
- package/mcp-server/server.js +1 -1
- package/mcp-server/server.js.map +1 -1
- 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/createprompt.d.ts +78 -0
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +56 -5
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +39 -0
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +36 -11
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deployments.d.ts +39 -0
- package/models/operations/deployments.d.ts.map +1 -1
- package/models/operations/deployments.js +28 -3
- package/models/operations/deployments.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getallprompts.d.ts +39 -0
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +28 -3
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +39 -0
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +28 -3
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +39 -0
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +28 -3
- package/models/operations/getpromptversion.js.map +1 -1
- 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/listpromptversions.d.ts +39 -0
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +28 -3
- package/models/operations/listpromptversions.js.map +1 -1
- 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/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/models/operations/updateprompt.d.ts +78 -0
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +55 -5
- package/models/operations/updateprompt.js.map +1 -1
- 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 +2 -2
- 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/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 +16 -16
- package/packages/orq-rc/src/models/operations/createprompt.ts +80 -0
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +43 -0
- package/packages/orq-rc/src/models/operations/deployments.ts +41 -0
- 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/getallprompts.ts +41 -0
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +41 -0
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +43 -0
- 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/listpromptversions.ts +43 -0
- 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/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 +16 -16
- package/packages/orq-rc/src/models/operations/updateprompt.ts +84 -0
- 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/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/createprompt.ts +80 -0
- package/src/models/operations/deploymentgetconfig.ts +43 -0
- package/src/models/operations/deployments.ts +41 -0
- 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/getallprompts.ts +41 -0
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/getoneprompt.ts +41 -0
- package/src/models/operations/getpromptversion.ts +43 -0
- 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/listpromptversions.ts +43 -0
- 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/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/src/models/operations/updateprompt.ts +84 -0
|
@@ -111,6 +111,19 @@ export type UpdatePromptReasoningEffort = ClosedEnum<
|
|
|
111
111
|
typeof UpdatePromptReasoningEffort
|
|
112
112
|
>;
|
|
113
113
|
|
|
114
|
+
/**
|
|
115
|
+
* Controls the verbosity of the model output.
|
|
116
|
+
*/
|
|
117
|
+
export const UpdatePromptVerbosity = {
|
|
118
|
+
Low: "low",
|
|
119
|
+
Medium: "medium",
|
|
120
|
+
High: "high",
|
|
121
|
+
} as const;
|
|
122
|
+
/**
|
|
123
|
+
* Controls the verbosity of the model output.
|
|
124
|
+
*/
|
|
125
|
+
export type UpdatePromptVerbosity = ClosedEnum<typeof UpdatePromptVerbosity>;
|
|
126
|
+
|
|
114
127
|
/**
|
|
115
128
|
* Model Parameters: Not all parameters apply to every model
|
|
116
129
|
*/
|
|
@@ -195,6 +208,10 @@ export type UpdatePromptModelParameters = {
|
|
|
195
208
|
* Gives the model enhanced reasoning capabilities for complex tasks. A value of 0 disables thinking. The minimum budget tokens for thinking are 1024. The Budget Tokens should never exceed the Max Tokens parameter. Only supported by `Anthropic`
|
|
196
209
|
*/
|
|
197
210
|
budgetTokens?: number | undefined;
|
|
211
|
+
/**
|
|
212
|
+
* Controls the verbosity of the model output.
|
|
213
|
+
*/
|
|
214
|
+
verbosity?: UpdatePromptVerbosity | undefined;
|
|
198
215
|
};
|
|
199
216
|
|
|
200
217
|
export const UpdatePromptProvider = {
|
|
@@ -583,6 +600,21 @@ export type UpdatePromptPromptsReasoningEffort = ClosedEnum<
|
|
|
583
600
|
typeof UpdatePromptPromptsReasoningEffort
|
|
584
601
|
>;
|
|
585
602
|
|
|
603
|
+
/**
|
|
604
|
+
* Controls the verbosity of the model output.
|
|
605
|
+
*/
|
|
606
|
+
export const UpdatePromptPromptsVerbosity = {
|
|
607
|
+
Low: "low",
|
|
608
|
+
Medium: "medium",
|
|
609
|
+
High: "high",
|
|
610
|
+
} as const;
|
|
611
|
+
/**
|
|
612
|
+
* Controls the verbosity of the model output.
|
|
613
|
+
*/
|
|
614
|
+
export type UpdatePromptPromptsVerbosity = ClosedEnum<
|
|
615
|
+
typeof UpdatePromptPromptsVerbosity
|
|
616
|
+
>;
|
|
617
|
+
|
|
586
618
|
/**
|
|
587
619
|
* Model Parameters: Not all parameters apply to every model
|
|
588
620
|
*/
|
|
@@ -667,6 +699,10 @@ export type UpdatePromptPromptsModelParameters = {
|
|
|
667
699
|
* Gives the model enhanced reasoning capabilities for complex tasks. A value of 0 disables thinking. The minimum budget tokens for thinking are 1024. The Budget Tokens should never exceed the Max Tokens parameter. Only supported by `Anthropic`
|
|
668
700
|
*/
|
|
669
701
|
budgetTokens?: number | undefined;
|
|
702
|
+
/**
|
|
703
|
+
* Controls the verbosity of the model output.
|
|
704
|
+
*/
|
|
705
|
+
verbosity?: UpdatePromptPromptsVerbosity | undefined;
|
|
670
706
|
};
|
|
671
707
|
|
|
672
708
|
export const UpdatePromptPromptsProvider = {
|
|
@@ -1324,6 +1360,27 @@ export namespace UpdatePromptReasoningEffort$ {
|
|
|
1324
1360
|
export const outboundSchema = UpdatePromptReasoningEffort$outboundSchema;
|
|
1325
1361
|
}
|
|
1326
1362
|
|
|
1363
|
+
/** @internal */
|
|
1364
|
+
export const UpdatePromptVerbosity$inboundSchema: z.ZodNativeEnum<
|
|
1365
|
+
typeof UpdatePromptVerbosity
|
|
1366
|
+
> = z.nativeEnum(UpdatePromptVerbosity);
|
|
1367
|
+
|
|
1368
|
+
/** @internal */
|
|
1369
|
+
export const UpdatePromptVerbosity$outboundSchema: z.ZodNativeEnum<
|
|
1370
|
+
typeof UpdatePromptVerbosity
|
|
1371
|
+
> = UpdatePromptVerbosity$inboundSchema;
|
|
1372
|
+
|
|
1373
|
+
/**
|
|
1374
|
+
* @internal
|
|
1375
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1376
|
+
*/
|
|
1377
|
+
export namespace UpdatePromptVerbosity$ {
|
|
1378
|
+
/** @deprecated use `UpdatePromptVerbosity$inboundSchema` instead. */
|
|
1379
|
+
export const inboundSchema = UpdatePromptVerbosity$inboundSchema;
|
|
1380
|
+
/** @deprecated use `UpdatePromptVerbosity$outboundSchema` instead. */
|
|
1381
|
+
export const outboundSchema = UpdatePromptVerbosity$outboundSchema;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1327
1384
|
/** @internal */
|
|
1328
1385
|
export const UpdatePromptModelParameters$inboundSchema: z.ZodType<
|
|
1329
1386
|
UpdatePromptModelParameters,
|
|
@@ -1352,6 +1409,7 @@ export const UpdatePromptModelParameters$inboundSchema: z.ZodType<
|
|
|
1352
1409
|
encoding_format: UpdatePromptEncodingFormat$inboundSchema.optional(),
|
|
1353
1410
|
reasoningEffort: UpdatePromptReasoningEffort$inboundSchema.optional(),
|
|
1354
1411
|
budgetTokens: z.number().optional(),
|
|
1412
|
+
verbosity: UpdatePromptVerbosity$inboundSchema.optional(),
|
|
1355
1413
|
}).transform((v) => {
|
|
1356
1414
|
return remap$(v, {
|
|
1357
1415
|
"encoding_format": "encodingFormat",
|
|
@@ -1381,6 +1439,7 @@ export type UpdatePromptModelParameters$Outbound = {
|
|
|
1381
1439
|
encoding_format?: string | undefined;
|
|
1382
1440
|
reasoningEffort?: string | undefined;
|
|
1383
1441
|
budgetTokens?: number | undefined;
|
|
1442
|
+
verbosity?: string | undefined;
|
|
1384
1443
|
};
|
|
1385
1444
|
|
|
1386
1445
|
/** @internal */
|
|
@@ -1411,6 +1470,7 @@ export const UpdatePromptModelParameters$outboundSchema: z.ZodType<
|
|
|
1411
1470
|
encodingFormat: UpdatePromptEncodingFormat$outboundSchema.optional(),
|
|
1412
1471
|
reasoningEffort: UpdatePromptReasoningEffort$outboundSchema.optional(),
|
|
1413
1472
|
budgetTokens: z.number().optional(),
|
|
1473
|
+
verbosity: UpdatePromptVerbosity$outboundSchema.optional(),
|
|
1414
1474
|
}).transform((v) => {
|
|
1415
1475
|
return remap$(v, {
|
|
1416
1476
|
encodingFormat: "encoding_format",
|
|
@@ -2995,6 +3055,27 @@ export namespace UpdatePromptPromptsReasoningEffort$ {
|
|
|
2995
3055
|
UpdatePromptPromptsReasoningEffort$outboundSchema;
|
|
2996
3056
|
}
|
|
2997
3057
|
|
|
3058
|
+
/** @internal */
|
|
3059
|
+
export const UpdatePromptPromptsVerbosity$inboundSchema: z.ZodNativeEnum<
|
|
3060
|
+
typeof UpdatePromptPromptsVerbosity
|
|
3061
|
+
> = z.nativeEnum(UpdatePromptPromptsVerbosity);
|
|
3062
|
+
|
|
3063
|
+
/** @internal */
|
|
3064
|
+
export const UpdatePromptPromptsVerbosity$outboundSchema: z.ZodNativeEnum<
|
|
3065
|
+
typeof UpdatePromptPromptsVerbosity
|
|
3066
|
+
> = UpdatePromptPromptsVerbosity$inboundSchema;
|
|
3067
|
+
|
|
3068
|
+
/**
|
|
3069
|
+
* @internal
|
|
3070
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3071
|
+
*/
|
|
3072
|
+
export namespace UpdatePromptPromptsVerbosity$ {
|
|
3073
|
+
/** @deprecated use `UpdatePromptPromptsVerbosity$inboundSchema` instead. */
|
|
3074
|
+
export const inboundSchema = UpdatePromptPromptsVerbosity$inboundSchema;
|
|
3075
|
+
/** @deprecated use `UpdatePromptPromptsVerbosity$outboundSchema` instead. */
|
|
3076
|
+
export const outboundSchema = UpdatePromptPromptsVerbosity$outboundSchema;
|
|
3077
|
+
}
|
|
3078
|
+
|
|
2998
3079
|
/** @internal */
|
|
2999
3080
|
export const UpdatePromptPromptsModelParameters$inboundSchema: z.ZodType<
|
|
3000
3081
|
UpdatePromptPromptsModelParameters,
|
|
@@ -3024,6 +3105,7 @@ export const UpdatePromptPromptsModelParameters$inboundSchema: z.ZodType<
|
|
|
3024
3105
|
encoding_format: UpdatePromptPromptsEncodingFormat$inboundSchema.optional(),
|
|
3025
3106
|
reasoningEffort: UpdatePromptPromptsReasoningEffort$inboundSchema.optional(),
|
|
3026
3107
|
budgetTokens: z.number().optional(),
|
|
3108
|
+
verbosity: UpdatePromptPromptsVerbosity$inboundSchema.optional(),
|
|
3027
3109
|
}).transform((v) => {
|
|
3028
3110
|
return remap$(v, {
|
|
3029
3111
|
"encoding_format": "encodingFormat",
|
|
@@ -3053,6 +3135,7 @@ export type UpdatePromptPromptsModelParameters$Outbound = {
|
|
|
3053
3135
|
encoding_format?: string | undefined;
|
|
3054
3136
|
reasoningEffort?: string | undefined;
|
|
3055
3137
|
budgetTokens?: number | undefined;
|
|
3138
|
+
verbosity?: string | undefined;
|
|
3056
3139
|
};
|
|
3057
3140
|
|
|
3058
3141
|
/** @internal */
|
|
@@ -3084,6 +3167,7 @@ export const UpdatePromptPromptsModelParameters$outboundSchema: z.ZodType<
|
|
|
3084
3167
|
encodingFormat: UpdatePromptPromptsEncodingFormat$outboundSchema.optional(),
|
|
3085
3168
|
reasoningEffort: UpdatePromptPromptsReasoningEffort$outboundSchema.optional(),
|
|
3086
3169
|
budgetTokens: z.number().optional(),
|
|
3170
|
+
verbosity: UpdatePromptPromptsVerbosity$outboundSchema.optional(),
|
|
3087
3171
|
}).transform((v) => {
|
|
3088
3172
|
return remap$(v, {
|
|
3089
3173
|
encodingFormat: "encoding_format",
|
package/src/lib/config.ts
CHANGED
|
@@ -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.10.
|
|
71
|
+
sdkVersion: "3.10.11",
|
|
72
72
|
genVersion: "2.675.0",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.10.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.10.11 2.675.0 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -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-08-
|
|
185
|
+
"2025-08-08T11:04:43.847Z",
|
|
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-08-
|
|
226
|
+
updated: z.date().default(() => new Date("2025-08-08T11:04:43.847Z"))
|
|
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-08-
|
|
214
|
+
"2025-08-08T11:04:43.847Z",
|
|
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-08-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-08-08T11:04:43.847Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -5111,7 +5111,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5111
5111
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5112
5112
|
.optional(),
|
|
5113
5113
|
updated: z.string().datetime({ offset: true }).default(
|
|
5114
|
-
"2025-08-
|
|
5114
|
+
"2025-08-08T11:04:43.847Z",
|
|
5115
5115
|
).transform(v => new Date(v)),
|
|
5116
5116
|
}).transform((v) => {
|
|
5117
5117
|
return remap$(v, {
|
|
@@ -5175,7 +5175,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5175
5175
|
createdById: z.string().optional(),
|
|
5176
5176
|
updatedById: z.string().optional(),
|
|
5177
5177
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5178
|
-
updated: z.date().default(() => new Date("2025-08-
|
|
5178
|
+
updated: z.date().default(() => new Date("2025-08-08T11:04:43.847Z"))
|
|
5179
5179
|
.transform(v => v.toISOString()),
|
|
5180
5180
|
}).transform((v) => {
|
|
5181
5181
|
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("01K24NNSSZNRDFCJ28CBPHDVQD"),
|
|
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("01K24NNSSZNRDFCJ28CBPHDVQD"),
|
|
799
799
|
displayName: z.string(),
|
|
800
800
|
description: z.string().optional(),
|
|
801
801
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2399,8 +2399,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
2399
2399
|
> = z.object({
|
|
2400
2400
|
_id: z.string(),
|
|
2401
2401
|
description: z.string(),
|
|
2402
|
-
created: z.string().default("2025-08-
|
|
2403
|
-
updated: z.string().default("2025-08-
|
|
2402
|
+
created: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
2403
|
+
updated: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
2404
2404
|
guardrail_config: z.union([
|
|
2405
2405
|
z.lazy(() =>
|
|
2406
2406
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -2442,8 +2442,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
2442
2442
|
> = z.object({
|
|
2443
2443
|
id: z.string(),
|
|
2444
2444
|
description: z.string(),
|
|
2445
|
-
created: z.string().default("2025-08-
|
|
2446
|
-
updated: z.string().default("2025-08-
|
|
2445
|
+
created: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
2446
|
+
updated: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
2447
2447
|
guardrailConfig: z.union([
|
|
2448
2448
|
z.lazy(() =>
|
|
2449
2449
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -2856,8 +2856,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
2856
2856
|
> = z.object({
|
|
2857
2857
|
_id: z.string(),
|
|
2858
2858
|
description: z.string(),
|
|
2859
|
-
created: z.string().default("2025-08-
|
|
2860
|
-
updated: z.string().default("2025-08-
|
|
2859
|
+
created: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
2860
|
+
updated: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
2861
2861
|
guardrail_config: z.union([
|
|
2862
2862
|
z.lazy(() =>
|
|
2863
2863
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -2905,8 +2905,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
2905
2905
|
> = z.object({
|
|
2906
2906
|
id: z.string(),
|
|
2907
2907
|
description: z.string(),
|
|
2908
|
-
created: z.string().default("2025-08-
|
|
2909
|
-
updated: z.string().default("2025-08-
|
|
2908
|
+
created: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
2909
|
+
updated: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
2910
2910
|
guardrailConfig: z.union([
|
|
2911
2911
|
z.lazy(() =>
|
|
2912
2912
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -3283,8 +3283,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
3283
3283
|
> = z.object({
|
|
3284
3284
|
_id: z.string(),
|
|
3285
3285
|
description: z.string(),
|
|
3286
|
-
created: z.string().default("2025-08-
|
|
3287
|
-
updated: z.string().default("2025-08-
|
|
3286
|
+
created: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
3287
|
+
updated: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
3288
3288
|
guardrail_config: z.union([
|
|
3289
3289
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
3290
3290
|
z.lazy(() =>
|
|
@@ -3324,8 +3324,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
3324
3324
|
> = z.object({
|
|
3325
3325
|
id: z.string(),
|
|
3326
3326
|
description: z.string(),
|
|
3327
|
-
created: z.string().default("2025-08-
|
|
3328
|
-
updated: z.string().default("2025-08-
|
|
3327
|
+
created: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
3328
|
+
updated: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
3329
3329
|
guardrailConfig: z.union([
|
|
3330
3330
|
z.lazy(() =>
|
|
3331
3331
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -3680,8 +3680,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
3680
3680
|
> = z.object({
|
|
3681
3681
|
_id: z.string(),
|
|
3682
3682
|
description: z.string(),
|
|
3683
|
-
created: z.string().default("2025-08-
|
|
3684
|
-
updated: z.string().default("2025-08-
|
|
3683
|
+
created: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
3684
|
+
updated: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
3685
3685
|
guardrail_config: z.union([
|
|
3686
3686
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
3687
3687
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -3721,8 +3721,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
3721
3721
|
> = z.object({
|
|
3722
3722
|
id: z.string(),
|
|
3723
3723
|
description: z.string(),
|
|
3724
|
-
created: z.string().default("2025-08-
|
|
3725
|
-
updated: z.string().default("2025-08-
|
|
3724
|
+
created: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
3725
|
+
updated: z.string().default("2025-08-08T11:04:46.306Z"),
|
|
3726
3726
|
guardrailConfig: z.union([
|
|
3727
3727
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
3728
3728
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -120,6 +120,19 @@ export const ReasoningEffort = {
|
|
|
120
120
|
*/
|
|
121
121
|
export type ReasoningEffort = ClosedEnum<typeof ReasoningEffort>;
|
|
122
122
|
|
|
123
|
+
/**
|
|
124
|
+
* Controls the verbosity of the model output.
|
|
125
|
+
*/
|
|
126
|
+
export const Verbosity = {
|
|
127
|
+
Low: "low",
|
|
128
|
+
Medium: "medium",
|
|
129
|
+
High: "high",
|
|
130
|
+
} as const;
|
|
131
|
+
/**
|
|
132
|
+
* Controls the verbosity of the model output.
|
|
133
|
+
*/
|
|
134
|
+
export type Verbosity = ClosedEnum<typeof Verbosity>;
|
|
135
|
+
|
|
123
136
|
/**
|
|
124
137
|
* Model Parameters: Not all parameters apply to every model
|
|
125
138
|
*/
|
|
@@ -200,6 +213,10 @@ export type ModelParameters = {
|
|
|
200
213
|
* Gives the model enhanced reasoning capabilities for complex tasks. A value of 0 disables thinking. The minimum budget tokens for thinking are 1024. The Budget Tokens should never exceed the Max Tokens parameter. Only supported by `Anthropic`
|
|
201
214
|
*/
|
|
202
215
|
budgetTokens?: number | undefined;
|
|
216
|
+
/**
|
|
217
|
+
* Controls the verbosity of the model output.
|
|
218
|
+
*/
|
|
219
|
+
verbosity?: Verbosity | undefined;
|
|
203
220
|
};
|
|
204
221
|
|
|
205
222
|
export const Provider = {
|
|
@@ -582,6 +599,19 @@ export type CreatePromptReasoningEffort = ClosedEnum<
|
|
|
582
599
|
typeof CreatePromptReasoningEffort
|
|
583
600
|
>;
|
|
584
601
|
|
|
602
|
+
/**
|
|
603
|
+
* Controls the verbosity of the model output.
|
|
604
|
+
*/
|
|
605
|
+
export const CreatePromptVerbosity = {
|
|
606
|
+
Low: "low",
|
|
607
|
+
Medium: "medium",
|
|
608
|
+
High: "high",
|
|
609
|
+
} as const;
|
|
610
|
+
/**
|
|
611
|
+
* Controls the verbosity of the model output.
|
|
612
|
+
*/
|
|
613
|
+
export type CreatePromptVerbosity = ClosedEnum<typeof CreatePromptVerbosity>;
|
|
614
|
+
|
|
585
615
|
/**
|
|
586
616
|
* Model Parameters: Not all parameters apply to every model
|
|
587
617
|
*/
|
|
@@ -666,6 +696,10 @@ export type CreatePromptModelParameters = {
|
|
|
666
696
|
* Gives the model enhanced reasoning capabilities for complex tasks. A value of 0 disables thinking. The minimum budget tokens for thinking are 1024. The Budget Tokens should never exceed the Max Tokens parameter. Only supported by `Anthropic`
|
|
667
697
|
*/
|
|
668
698
|
budgetTokens?: number | undefined;
|
|
699
|
+
/**
|
|
700
|
+
* Controls the verbosity of the model output.
|
|
701
|
+
*/
|
|
702
|
+
verbosity?: CreatePromptVerbosity | undefined;
|
|
669
703
|
};
|
|
670
704
|
|
|
671
705
|
export const CreatePromptProvider = {
|
|
@@ -1317,6 +1351,25 @@ export namespace ReasoningEffort$ {
|
|
|
1317
1351
|
export const outboundSchema = ReasoningEffort$outboundSchema;
|
|
1318
1352
|
}
|
|
1319
1353
|
|
|
1354
|
+
/** @internal */
|
|
1355
|
+
export const Verbosity$inboundSchema: z.ZodNativeEnum<typeof Verbosity> = z
|
|
1356
|
+
.nativeEnum(Verbosity);
|
|
1357
|
+
|
|
1358
|
+
/** @internal */
|
|
1359
|
+
export const Verbosity$outboundSchema: z.ZodNativeEnum<typeof Verbosity> =
|
|
1360
|
+
Verbosity$inboundSchema;
|
|
1361
|
+
|
|
1362
|
+
/**
|
|
1363
|
+
* @internal
|
|
1364
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1365
|
+
*/
|
|
1366
|
+
export namespace Verbosity$ {
|
|
1367
|
+
/** @deprecated use `Verbosity$inboundSchema` instead. */
|
|
1368
|
+
export const inboundSchema = Verbosity$inboundSchema;
|
|
1369
|
+
/** @deprecated use `Verbosity$outboundSchema` instead. */
|
|
1370
|
+
export const outboundSchema = Verbosity$outboundSchema;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1320
1373
|
/** @internal */
|
|
1321
1374
|
export const ModelParameters$inboundSchema: z.ZodType<
|
|
1322
1375
|
ModelParameters,
|
|
@@ -1345,6 +1398,7 @@ export const ModelParameters$inboundSchema: z.ZodType<
|
|
|
1345
1398
|
encoding_format: EncodingFormat$inboundSchema.optional(),
|
|
1346
1399
|
reasoningEffort: ReasoningEffort$inboundSchema.optional(),
|
|
1347
1400
|
budgetTokens: z.number().optional(),
|
|
1401
|
+
verbosity: Verbosity$inboundSchema.optional(),
|
|
1348
1402
|
}).transform((v) => {
|
|
1349
1403
|
return remap$(v, {
|
|
1350
1404
|
"encoding_format": "encodingFormat",
|
|
@@ -1374,6 +1428,7 @@ export type ModelParameters$Outbound = {
|
|
|
1374
1428
|
encoding_format?: string | undefined;
|
|
1375
1429
|
reasoningEffort?: string | undefined;
|
|
1376
1430
|
budgetTokens?: number | undefined;
|
|
1431
|
+
verbosity?: string | undefined;
|
|
1377
1432
|
};
|
|
1378
1433
|
|
|
1379
1434
|
/** @internal */
|
|
@@ -1404,6 +1459,7 @@ export const ModelParameters$outboundSchema: z.ZodType<
|
|
|
1404
1459
|
encodingFormat: EncodingFormat$outboundSchema.optional(),
|
|
1405
1460
|
reasoningEffort: ReasoningEffort$outboundSchema.optional(),
|
|
1406
1461
|
budgetTokens: z.number().optional(),
|
|
1462
|
+
verbosity: Verbosity$outboundSchema.optional(),
|
|
1407
1463
|
}).transform((v) => {
|
|
1408
1464
|
return remap$(v, {
|
|
1409
1465
|
encodingFormat: "encoding_format",
|
|
@@ -2866,6 +2922,27 @@ export namespace CreatePromptReasoningEffort$ {
|
|
|
2866
2922
|
export const outboundSchema = CreatePromptReasoningEffort$outboundSchema;
|
|
2867
2923
|
}
|
|
2868
2924
|
|
|
2925
|
+
/** @internal */
|
|
2926
|
+
export const CreatePromptVerbosity$inboundSchema: z.ZodNativeEnum<
|
|
2927
|
+
typeof CreatePromptVerbosity
|
|
2928
|
+
> = z.nativeEnum(CreatePromptVerbosity);
|
|
2929
|
+
|
|
2930
|
+
/** @internal */
|
|
2931
|
+
export const CreatePromptVerbosity$outboundSchema: z.ZodNativeEnum<
|
|
2932
|
+
typeof CreatePromptVerbosity
|
|
2933
|
+
> = CreatePromptVerbosity$inboundSchema;
|
|
2934
|
+
|
|
2935
|
+
/**
|
|
2936
|
+
* @internal
|
|
2937
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2938
|
+
*/
|
|
2939
|
+
export namespace CreatePromptVerbosity$ {
|
|
2940
|
+
/** @deprecated use `CreatePromptVerbosity$inboundSchema` instead. */
|
|
2941
|
+
export const inboundSchema = CreatePromptVerbosity$inboundSchema;
|
|
2942
|
+
/** @deprecated use `CreatePromptVerbosity$outboundSchema` instead. */
|
|
2943
|
+
export const outboundSchema = CreatePromptVerbosity$outboundSchema;
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2869
2946
|
/** @internal */
|
|
2870
2947
|
export const CreatePromptModelParameters$inboundSchema: z.ZodType<
|
|
2871
2948
|
CreatePromptModelParameters,
|
|
@@ -2894,6 +2971,7 @@ export const CreatePromptModelParameters$inboundSchema: z.ZodType<
|
|
|
2894
2971
|
encoding_format: CreatePromptEncodingFormat$inboundSchema.optional(),
|
|
2895
2972
|
reasoningEffort: CreatePromptReasoningEffort$inboundSchema.optional(),
|
|
2896
2973
|
budgetTokens: z.number().optional(),
|
|
2974
|
+
verbosity: CreatePromptVerbosity$inboundSchema.optional(),
|
|
2897
2975
|
}).transform((v) => {
|
|
2898
2976
|
return remap$(v, {
|
|
2899
2977
|
"encoding_format": "encodingFormat",
|
|
@@ -2923,6 +3001,7 @@ export type CreatePromptModelParameters$Outbound = {
|
|
|
2923
3001
|
encoding_format?: string | undefined;
|
|
2924
3002
|
reasoningEffort?: string | undefined;
|
|
2925
3003
|
budgetTokens?: number | undefined;
|
|
3004
|
+
verbosity?: string | undefined;
|
|
2926
3005
|
};
|
|
2927
3006
|
|
|
2928
3007
|
/** @internal */
|
|
@@ -2953,6 +3032,7 @@ export const CreatePromptModelParameters$outboundSchema: z.ZodType<
|
|
|
2953
3032
|
encodingFormat: CreatePromptEncodingFormat$outboundSchema.optional(),
|
|
2954
3033
|
reasoningEffort: CreatePromptReasoningEffort$outboundSchema.optional(),
|
|
2955
3034
|
budgetTokens: z.number().optional(),
|
|
3035
|
+
verbosity: CreatePromptVerbosity$outboundSchema.optional(),
|
|
2956
3036
|
}).transform((v) => {
|
|
2957
3037
|
return remap$(v, {
|
|
2958
3038
|
encodingFormat: "encoding_format",
|
|
@@ -1502,6 +1502,21 @@ export type DeploymentGetConfigReasoningEffort = ClosedEnum<
|
|
|
1502
1502
|
typeof DeploymentGetConfigReasoningEffort
|
|
1503
1503
|
>;
|
|
1504
1504
|
|
|
1505
|
+
/**
|
|
1506
|
+
* Controls the verbosity of the model output.
|
|
1507
|
+
*/
|
|
1508
|
+
export const DeploymentGetConfigVerbosity = {
|
|
1509
|
+
Low: "low",
|
|
1510
|
+
Medium: "medium",
|
|
1511
|
+
High: "high",
|
|
1512
|
+
} as const;
|
|
1513
|
+
/**
|
|
1514
|
+
* Controls the verbosity of the model output.
|
|
1515
|
+
*/
|
|
1516
|
+
export type DeploymentGetConfigVerbosity = ClosedEnum<
|
|
1517
|
+
typeof DeploymentGetConfigVerbosity
|
|
1518
|
+
>;
|
|
1519
|
+
|
|
1505
1520
|
/**
|
|
1506
1521
|
* Model Parameters: Not all parameters apply to every model
|
|
1507
1522
|
*/
|
|
@@ -1586,6 +1601,10 @@ export type ParametersT = {
|
|
|
1586
1601
|
* Gives the model enhanced reasoning capabilities for complex tasks. A value of 0 disables thinking. The minimum budget tokens for thinking are 1024. The Budget Tokens should never exceed the Max Tokens parameter. Only supported by `Anthropic`
|
|
1587
1602
|
*/
|
|
1588
1603
|
budgetTokens?: number | undefined;
|
|
1604
|
+
/**
|
|
1605
|
+
* Controls the verbosity of the model output.
|
|
1606
|
+
*/
|
|
1607
|
+
verbosity?: DeploymentGetConfigVerbosity | undefined;
|
|
1589
1608
|
};
|
|
1590
1609
|
|
|
1591
1610
|
/**
|
|
@@ -9002,6 +9021,27 @@ export namespace DeploymentGetConfigReasoningEffort$ {
|
|
|
9002
9021
|
DeploymentGetConfigReasoningEffort$outboundSchema;
|
|
9003
9022
|
}
|
|
9004
9023
|
|
|
9024
|
+
/** @internal */
|
|
9025
|
+
export const DeploymentGetConfigVerbosity$inboundSchema: z.ZodNativeEnum<
|
|
9026
|
+
typeof DeploymentGetConfigVerbosity
|
|
9027
|
+
> = z.nativeEnum(DeploymentGetConfigVerbosity);
|
|
9028
|
+
|
|
9029
|
+
/** @internal */
|
|
9030
|
+
export const DeploymentGetConfigVerbosity$outboundSchema: z.ZodNativeEnum<
|
|
9031
|
+
typeof DeploymentGetConfigVerbosity
|
|
9032
|
+
> = DeploymentGetConfigVerbosity$inboundSchema;
|
|
9033
|
+
|
|
9034
|
+
/**
|
|
9035
|
+
* @internal
|
|
9036
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9037
|
+
*/
|
|
9038
|
+
export namespace DeploymentGetConfigVerbosity$ {
|
|
9039
|
+
/** @deprecated use `DeploymentGetConfigVerbosity$inboundSchema` instead. */
|
|
9040
|
+
export const inboundSchema = DeploymentGetConfigVerbosity$inboundSchema;
|
|
9041
|
+
/** @deprecated use `DeploymentGetConfigVerbosity$outboundSchema` instead. */
|
|
9042
|
+
export const outboundSchema = DeploymentGetConfigVerbosity$outboundSchema;
|
|
9043
|
+
}
|
|
9044
|
+
|
|
9005
9045
|
/** @internal */
|
|
9006
9046
|
export const ParametersT$inboundSchema: z.ZodType<
|
|
9007
9047
|
ParametersT,
|
|
@@ -9031,6 +9071,7 @@ export const ParametersT$inboundSchema: z.ZodType<
|
|
|
9031
9071
|
encoding_format: DeploymentGetConfigEncodingFormat$inboundSchema.optional(),
|
|
9032
9072
|
reasoningEffort: DeploymentGetConfigReasoningEffort$inboundSchema.optional(),
|
|
9033
9073
|
budgetTokens: z.number().optional(),
|
|
9074
|
+
verbosity: DeploymentGetConfigVerbosity$inboundSchema.optional(),
|
|
9034
9075
|
}).transform((v) => {
|
|
9035
9076
|
return remap$(v, {
|
|
9036
9077
|
"encoding_format": "encodingFormat",
|
|
@@ -9060,6 +9101,7 @@ export type ParametersT$Outbound = {
|
|
|
9060
9101
|
encoding_format?: string | undefined;
|
|
9061
9102
|
reasoningEffort?: string | undefined;
|
|
9062
9103
|
budgetTokens?: number | undefined;
|
|
9104
|
+
verbosity?: string | undefined;
|
|
9063
9105
|
};
|
|
9064
9106
|
|
|
9065
9107
|
/** @internal */
|
|
@@ -9091,6 +9133,7 @@ export const ParametersT$outboundSchema: z.ZodType<
|
|
|
9091
9133
|
encodingFormat: DeploymentGetConfigEncodingFormat$outboundSchema.optional(),
|
|
9092
9134
|
reasoningEffort: DeploymentGetConfigReasoningEffort$outboundSchema.optional(),
|
|
9093
9135
|
budgetTokens: z.number().optional(),
|
|
9136
|
+
verbosity: DeploymentGetConfigVerbosity$outboundSchema.optional(),
|
|
9094
9137
|
}).transform((v) => {
|
|
9095
9138
|
return remap$(v, {
|
|
9096
9139
|
encodingFormat: "encoding_format",
|