@orq-ai/node 3.10.10 → 3.10.12

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.
Files changed (93) hide show
  1. package/bin/mcp-server.js +103 -103
  2. package/bin/mcp-server.js.map +26 -26
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +2 -2
  6. package/lib/config.js +2 -2
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/operations/createcontact.js +2 -2
  10. package/models/operations/createdataset.js +2 -2
  11. package/models/operations/createdatasetitem.js +2 -2
  12. package/models/operations/createdatasource.js +2 -2
  13. package/models/operations/createeval.js +16 -16
  14. package/models/operations/fileget.js +2 -2
  15. package/models/operations/filelist.js +2 -2
  16. package/models/operations/fileupload.js +2 -2
  17. package/models/operations/getevals.js +28 -28
  18. package/models/operations/listcontacts.js +2 -2
  19. package/models/operations/listdatasetdatapoints.js +2 -2
  20. package/models/operations/listdatasets.js +2 -2
  21. package/models/operations/listdatasources.js +2 -2
  22. package/models/operations/retrievecontact.js +2 -2
  23. package/models/operations/retrievedatapoint.js +2 -2
  24. package/models/operations/retrievedataset.js +2 -2
  25. package/models/operations/retrievedatasource.js +2 -2
  26. package/models/operations/updatecontact.js +2 -2
  27. package/models/operations/updatedatapoint.js +2 -2
  28. package/models/operations/updatedataset.js +2 -2
  29. package/models/operations/updatedatasource.js +2 -2
  30. package/models/operations/updateeval.js +16 -16
  31. package/package.json +1 -1
  32. package/packages/orq-rc/examples/package-lock.json +1 -1
  33. package/packages/orq-rc/jsr.json +1 -1
  34. package/packages/orq-rc/package-lock.json +2 -2
  35. package/packages/orq-rc/package.json +1 -1
  36. package/packages/orq-rc/src/lib/config.ts +2 -2
  37. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  38. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  39. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  40. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  41. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
  42. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  43. package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
  44. package/packages/orq-rc/src/models/operations/createprompt.ts +80 -0
  45. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +43 -0
  46. package/packages/orq-rc/src/models/operations/deployments.ts +41 -0
  47. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  48. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  49. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  50. package/packages/orq-rc/src/models/operations/getallprompts.ts +41 -0
  51. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  52. package/packages/orq-rc/src/models/operations/getoneprompt.ts +41 -0
  53. package/packages/orq-rc/src/models/operations/getpromptversion.ts +43 -0
  54. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  55. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
  56. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  57. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  58. package/packages/orq-rc/src/models/operations/listpromptversions.ts +43 -0
  59. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  60. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
  61. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  62. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  63. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  64. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
  65. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  66. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  67. package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
  68. package/packages/orq-rc/src/models/operations/updateprompt.ts +84 -0
  69. package/src/lib/config.ts +2 -2
  70. package/src/mcp-server/mcp-server.ts +1 -1
  71. package/src/mcp-server/server.ts +1 -1
  72. package/src/models/operations/createcontact.ts +2 -2
  73. package/src/models/operations/createdataset.ts +2 -2
  74. package/src/models/operations/createdatasetitem.ts +2 -2
  75. package/src/models/operations/createdatasource.ts +2 -2
  76. package/src/models/operations/createeval.ts +16 -16
  77. package/src/models/operations/fileget.ts +2 -2
  78. package/src/models/operations/filelist.ts +2 -2
  79. package/src/models/operations/fileupload.ts +2 -2
  80. package/src/models/operations/getevals.ts +28 -28
  81. package/src/models/operations/listcontacts.ts +2 -2
  82. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  83. package/src/models/operations/listdatasets.ts +2 -2
  84. package/src/models/operations/listdatasources.ts +2 -2
  85. package/src/models/operations/retrievecontact.ts +2 -2
  86. package/src/models/operations/retrievedatapoint.ts +2 -2
  87. package/src/models/operations/retrievedataset.ts +2 -2
  88. package/src/models/operations/retrievedatasource.ts +2 -2
  89. package/src/models/operations/updatecontact.ts +2 -2
  90. package/src/models/operations/updatedatapoint.ts +2 -2
  91. package/src/models/operations/updatedataset.ts +2 -2
  92. package/src/models/operations/updatedatasource.ts +2 -2
  93. package/src/models/operations/updateeval.ts +16 -16
@@ -211,6 +211,19 @@ export type DeploymentsReasoningEffort = ClosedEnum<
211
211
  typeof DeploymentsReasoningEffort
212
212
  >;
213
213
 
214
+ /**
215
+ * Controls the verbosity of the model output.
216
+ */
217
+ export const DeploymentsVerbosity = {
218
+ Low: "low",
219
+ Medium: "medium",
220
+ High: "high",
221
+ } as const;
222
+ /**
223
+ * Controls the verbosity of the model output.
224
+ */
225
+ export type DeploymentsVerbosity = ClosedEnum<typeof DeploymentsVerbosity>;
226
+
214
227
  /**
215
228
  * Model Parameters: Not all parameters apply to every model
216
229
  */
@@ -295,6 +308,10 @@ export type DeploymentsModelParameters = {
295
308
  * 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`
296
309
  */
297
310
  budgetTokens?: number | undefined;
311
+ /**
312
+ * Controls the verbosity of the model output.
313
+ */
314
+ verbosity?: DeploymentsVerbosity | undefined;
298
315
  };
299
316
 
300
317
  export const DeploymentsProvider = {
@@ -1220,6 +1237,27 @@ export namespace DeploymentsReasoningEffort$ {
1220
1237
  export const outboundSchema = DeploymentsReasoningEffort$outboundSchema;
1221
1238
  }
1222
1239
 
1240
+ /** @internal */
1241
+ export const DeploymentsVerbosity$inboundSchema: z.ZodNativeEnum<
1242
+ typeof DeploymentsVerbosity
1243
+ > = z.nativeEnum(DeploymentsVerbosity);
1244
+
1245
+ /** @internal */
1246
+ export const DeploymentsVerbosity$outboundSchema: z.ZodNativeEnum<
1247
+ typeof DeploymentsVerbosity
1248
+ > = DeploymentsVerbosity$inboundSchema;
1249
+
1250
+ /**
1251
+ * @internal
1252
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1253
+ */
1254
+ export namespace DeploymentsVerbosity$ {
1255
+ /** @deprecated use `DeploymentsVerbosity$inboundSchema` instead. */
1256
+ export const inboundSchema = DeploymentsVerbosity$inboundSchema;
1257
+ /** @deprecated use `DeploymentsVerbosity$outboundSchema` instead. */
1258
+ export const outboundSchema = DeploymentsVerbosity$outboundSchema;
1259
+ }
1260
+
1223
1261
  /** @internal */
1224
1262
  export const DeploymentsModelParameters$inboundSchema: z.ZodType<
1225
1263
  DeploymentsModelParameters,
@@ -1248,6 +1286,7 @@ export const DeploymentsModelParameters$inboundSchema: z.ZodType<
1248
1286
  encoding_format: DeploymentsEncodingFormat$inboundSchema.optional(),
1249
1287
  reasoningEffort: DeploymentsReasoningEffort$inboundSchema.optional(),
1250
1288
  budgetTokens: z.number().optional(),
1289
+ verbosity: DeploymentsVerbosity$inboundSchema.optional(),
1251
1290
  }).transform((v) => {
1252
1291
  return remap$(v, {
1253
1292
  "encoding_format": "encodingFormat",
@@ -1277,6 +1316,7 @@ export type DeploymentsModelParameters$Outbound = {
1277
1316
  encoding_format?: string | undefined;
1278
1317
  reasoningEffort?: string | undefined;
1279
1318
  budgetTokens?: number | undefined;
1319
+ verbosity?: string | undefined;
1280
1320
  };
1281
1321
 
1282
1322
  /** @internal */
@@ -1307,6 +1347,7 @@ export const DeploymentsModelParameters$outboundSchema: z.ZodType<
1307
1347
  encodingFormat: DeploymentsEncodingFormat$outboundSchema.optional(),
1308
1348
  reasoningEffort: DeploymentsReasoningEffort$outboundSchema.optional(),
1309
1349
  budgetTokens: z.number().optional(),
1350
+ verbosity: DeploymentsVerbosity$outboundSchema.optional(),
1310
1351
  }).transform((v) => {
1311
1352
  return remap$(v, {
1312
1353
  encodingFormat: "encoding_format",
@@ -146,7 +146,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
146
146
  file_name: z.string(),
147
147
  workspace_id: z.string(),
148
148
  created: z.string().datetime({ offset: true }).default(
149
- "2025-08-07T14:39:09.511Z",
149
+ "2025-08-08T08:03:35.015Z",
150
150
  ).transform(v => new Date(v)),
151
151
  }).transform((v) => {
152
152
  return remap$(v, {
@@ -180,7 +180,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
180
180
  bytes: z.number(),
181
181
  fileName: z.string(),
182
182
  workspaceId: z.string(),
183
- created: z.date().default(() => new Date("2025-08-07T14:39:09.511Z"))
183
+ created: z.date().default(() => new Date("2025-08-08T08:03:35.015Z"))
184
184
  .transform(v => v.toISOString()),
185
185
  }).transform((v) => {
186
186
  return remap$(v, {
@@ -196,7 +196,7 @@ export const FileListData$inboundSchema: z.ZodType<
196
196
  file_name: z.string(),
197
197
  workspace_id: z.string(),
198
198
  created: z.string().datetime({ offset: true }).default(
199
- "2025-08-07T14:39:09.511Z",
199
+ "2025-08-08T08:03:35.015Z",
200
200
  ).transform(v => new Date(v)),
201
201
  }).transform((v) => {
202
202
  return remap$(v, {
@@ -230,7 +230,7 @@ export const FileListData$outboundSchema: z.ZodType<
230
230
  bytes: z.number(),
231
231
  fileName: z.string(),
232
232
  workspaceId: z.string(),
233
- created: z.date().default(() => new Date("2025-08-07T14:39:09.511Z"))
233
+ created: z.date().default(() => new Date("2025-08-08T08:03:35.015Z"))
234
234
  .transform(v => v.toISOString()),
235
235
  }).transform((v) => {
236
236
  return remap$(v, {
@@ -250,7 +250,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
250
250
  file_name: z.string(),
251
251
  workspace_id: z.string(),
252
252
  created: z.string().datetime({ offset: true }).default(
253
- "2025-08-07T14:39:09.511Z",
253
+ "2025-08-08T08:03:35.015Z",
254
254
  ).transform(v => new Date(v)),
255
255
  }).transform((v) => {
256
256
  return remap$(v, {
@@ -284,7 +284,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
284
284
  bytes: z.number(),
285
285
  fileName: z.string(),
286
286
  workspaceId: z.string(),
287
- created: z.date().default(() => new Date("2025-08-07T14:39:09.511Z"))
287
+ created: z.date().default(() => new Date("2025-08-08T08:03:35.015Z"))
288
288
  .transform(v => v.toISOString()),
289
289
  }).transform((v) => {
290
290
  return remap$(v, {
@@ -155,6 +155,19 @@ export type GetAllPromptsReasoningEffort = ClosedEnum<
155
155
  typeof GetAllPromptsReasoningEffort
156
156
  >;
157
157
 
158
+ /**
159
+ * Controls the verbosity of the model output.
160
+ */
161
+ export const GetAllPromptsVerbosity = {
162
+ Low: "low",
163
+ Medium: "medium",
164
+ High: "high",
165
+ } as const;
166
+ /**
167
+ * Controls the verbosity of the model output.
168
+ */
169
+ export type GetAllPromptsVerbosity = ClosedEnum<typeof GetAllPromptsVerbosity>;
170
+
158
171
  /**
159
172
  * Model Parameters: Not all parameters apply to every model
160
173
  */
@@ -239,6 +252,10 @@ export type GetAllPromptsModelParameters = {
239
252
  * 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`
240
253
  */
241
254
  budgetTokens?: number | undefined;
255
+ /**
256
+ * Controls the verbosity of the model output.
257
+ */
258
+ verbosity?: GetAllPromptsVerbosity | undefined;
242
259
  };
243
260
 
244
261
  export const GetAllPromptsProvider = {
@@ -1030,6 +1047,27 @@ export namespace GetAllPromptsReasoningEffort$ {
1030
1047
  export const outboundSchema = GetAllPromptsReasoningEffort$outboundSchema;
1031
1048
  }
1032
1049
 
1050
+ /** @internal */
1051
+ export const GetAllPromptsVerbosity$inboundSchema: z.ZodNativeEnum<
1052
+ typeof GetAllPromptsVerbosity
1053
+ > = z.nativeEnum(GetAllPromptsVerbosity);
1054
+
1055
+ /** @internal */
1056
+ export const GetAllPromptsVerbosity$outboundSchema: z.ZodNativeEnum<
1057
+ typeof GetAllPromptsVerbosity
1058
+ > = GetAllPromptsVerbosity$inboundSchema;
1059
+
1060
+ /**
1061
+ * @internal
1062
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1063
+ */
1064
+ export namespace GetAllPromptsVerbosity$ {
1065
+ /** @deprecated use `GetAllPromptsVerbosity$inboundSchema` instead. */
1066
+ export const inboundSchema = GetAllPromptsVerbosity$inboundSchema;
1067
+ /** @deprecated use `GetAllPromptsVerbosity$outboundSchema` instead. */
1068
+ export const outboundSchema = GetAllPromptsVerbosity$outboundSchema;
1069
+ }
1070
+
1033
1071
  /** @internal */
1034
1072
  export const GetAllPromptsModelParameters$inboundSchema: z.ZodType<
1035
1073
  GetAllPromptsModelParameters,
@@ -1058,6 +1096,7 @@ export const GetAllPromptsModelParameters$inboundSchema: z.ZodType<
1058
1096
  encoding_format: GetAllPromptsEncodingFormat$inboundSchema.optional(),
1059
1097
  reasoningEffort: GetAllPromptsReasoningEffort$inboundSchema.optional(),
1060
1098
  budgetTokens: z.number().optional(),
1099
+ verbosity: GetAllPromptsVerbosity$inboundSchema.optional(),
1061
1100
  }).transform((v) => {
1062
1101
  return remap$(v, {
1063
1102
  "encoding_format": "encodingFormat",
@@ -1087,6 +1126,7 @@ export type GetAllPromptsModelParameters$Outbound = {
1087
1126
  encoding_format?: string | undefined;
1088
1127
  reasoningEffort?: string | undefined;
1089
1128
  budgetTokens?: number | undefined;
1129
+ verbosity?: string | undefined;
1090
1130
  };
1091
1131
 
1092
1132
  /** @internal */
@@ -1117,6 +1157,7 @@ export const GetAllPromptsModelParameters$outboundSchema: z.ZodType<
1117
1157
  encodingFormat: GetAllPromptsEncodingFormat$outboundSchema.optional(),
1118
1158
  reasoningEffort: GetAllPromptsReasoningEffort$outboundSchema.optional(),
1119
1159
  budgetTokens: z.number().optional(),
1160
+ verbosity: GetAllPromptsVerbosity$outboundSchema.optional(),
1120
1161
  }).transform((v) => {
1121
1162
  return remap$(v, {
1122
1163
  encodingFormat: "encoding_format",
@@ -1551,8 +1551,8 @@ export const Typescript$inboundSchema: z.ZodType<
1551
1551
  > = z.object({
1552
1552
  _id: z.string(),
1553
1553
  description: z.string(),
1554
- created: z.string().default("2025-08-07T14:39:08.644Z"),
1555
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
1554
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
1555
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
1556
1556
  guardrail_config: z.union([
1557
1557
  z.lazy(() =>
1558
1558
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -1595,8 +1595,8 @@ export const Typescript$outboundSchema: z.ZodType<
1595
1595
  > = z.object({
1596
1596
  id: z.string(),
1597
1597
  description: z.string(),
1598
- created: z.string().default("2025-08-07T14:39:08.644Z"),
1599
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
1598
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
1599
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
1600
1600
  guardrailConfig: z.union([
1601
1601
  z.lazy(() =>
1602
1602
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -1992,8 +1992,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
1992
1992
  .object({
1993
1993
  _id: z.string(),
1994
1994
  description: z.string(),
1995
- created: z.string().default("2025-08-07T14:39:08.644Z"),
1996
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
1995
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
1996
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
1997
1997
  guardrail_config: z.union([
1998
1998
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
1999
1999
  z.lazy(() =>
@@ -2036,8 +2036,8 @@ export const Ragas$outboundSchema: z.ZodType<
2036
2036
  > = z.object({
2037
2037
  id: z.string(),
2038
2038
  description: z.string(),
2039
- created: z.string().default("2025-08-07T14:39:08.644Z"),
2040
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
2039
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
2040
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
2041
2041
  guardrailConfig: z.union([
2042
2042
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
2043
2043
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
@@ -5316,8 +5316,8 @@ export const DataFunction$inboundSchema: z.ZodType<
5316
5316
  > = z.object({
5317
5317
  _id: z.string(),
5318
5318
  description: z.string(),
5319
- created: z.string().default("2025-08-07T14:39:08.644Z"),
5320
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
5319
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
5320
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
5321
5321
  guardrail_config: z.union([
5322
5322
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
5323
5323
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -5427,8 +5427,8 @@ export const DataFunction$outboundSchema: z.ZodType<
5427
5427
  > = z.object({
5428
5428
  id: z.string(),
5429
5429
  description: z.string(),
5430
- created: z.string().default("2025-08-07T14:39:08.644Z"),
5431
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
5430
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
5431
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
5432
5432
  guardrailConfig: z.union([
5433
5433
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
5434
5434
  z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
@@ -5810,8 +5810,8 @@ export const DataPython$inboundSchema: z.ZodType<
5810
5810
  > = z.object({
5811
5811
  _id: z.string(),
5812
5812
  description: z.string(),
5813
- created: z.string().default("2025-08-07T14:39:08.644Z"),
5814
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
5813
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
5814
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
5815
5815
  guardrail_config: z.union([
5816
5816
  z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
5817
5817
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
@@ -5849,8 +5849,8 @@ export const DataPython$outboundSchema: z.ZodType<
5849
5849
  > = z.object({
5850
5850
  id: z.string(),
5851
5851
  description: z.string(),
5852
- created: z.string().default("2025-08-07T14:39:08.644Z"),
5853
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
5852
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
5853
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
5854
5854
  guardrailConfig: z.union([
5855
5855
  z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
5856
5856
  z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
@@ -6196,8 +6196,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
6196
6196
  > = z.object({
6197
6197
  _id: z.string(),
6198
6198
  description: z.string(),
6199
- created: z.string().default("2025-08-07T14:39:08.644Z"),
6200
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
6199
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
6200
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
6201
6201
  guardrail_config: z.union([
6202
6202
  z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
6203
6203
  z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
@@ -6241,8 +6241,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
6241
6241
  > = z.object({
6242
6242
  id: z.string(),
6243
6243
  description: z.string(),
6244
- created: z.string().default("2025-08-07T14:39:08.644Z"),
6245
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
6244
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
6245
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
6246
6246
  guardrailConfig: z.union([
6247
6247
  z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
6248
6248
  z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
@@ -6607,8 +6607,8 @@ export const DataJSON$inboundSchema: z.ZodType<
6607
6607
  > = z.object({
6608
6608
  _id: z.string(),
6609
6609
  description: z.string(),
6610
- created: z.string().default("2025-08-07T14:39:08.644Z"),
6611
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
6610
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
6611
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
6612
6612
  guardrail_config: z.union([
6613
6613
  z.lazy(() =>
6614
6614
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
@@ -6650,8 +6650,8 @@ export const DataJSON$outboundSchema: z.ZodType<
6650
6650
  > = z.object({
6651
6651
  id: z.string(),
6652
6652
  description: z.string(),
6653
- created: z.string().default("2025-08-07T14:39:08.644Z"),
6654
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
6653
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
6654
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
6655
6655
  guardrailConfig: z.union([
6656
6656
  z.lazy(() =>
6657
6657
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
@@ -7033,8 +7033,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
7033
7033
  z.object({
7034
7034
  _id: z.string(),
7035
7035
  description: z.string(),
7036
- created: z.string().default("2025-08-07T14:39:08.644Z"),
7037
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
7036
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
7037
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
7038
7038
  guardrail_config: z.union([
7039
7039
  z.lazy(() =>
7040
7040
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -7078,8 +7078,8 @@ export const DataLLM$outboundSchema: z.ZodType<
7078
7078
  > = z.object({
7079
7079
  id: z.string(),
7080
7080
  description: z.string(),
7081
- created: z.string().default("2025-08-07T14:39:08.644Z"),
7082
- updated: z.string().default("2025-08-07T14:39:08.644Z"),
7081
+ created: z.string().default("2025-08-08T08:03:34.108Z"),
7082
+ updated: z.string().default("2025-08-08T08:03:34.108Z"),
7083
7083
  guardrailConfig: z.union([
7084
7084
  z.lazy(() =>
7085
7085
  GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
@@ -142,6 +142,19 @@ export type GetOnePromptReasoningEffort = ClosedEnum<
142
142
  typeof GetOnePromptReasoningEffort
143
143
  >;
144
144
 
145
+ /**
146
+ * Controls the verbosity of the model output.
147
+ */
148
+ export const GetOnePromptVerbosity = {
149
+ Low: "low",
150
+ Medium: "medium",
151
+ High: "high",
152
+ } as const;
153
+ /**
154
+ * Controls the verbosity of the model output.
155
+ */
156
+ export type GetOnePromptVerbosity = ClosedEnum<typeof GetOnePromptVerbosity>;
157
+
145
158
  /**
146
159
  * Model Parameters: Not all parameters apply to every model
147
160
  */
@@ -226,6 +239,10 @@ export type GetOnePromptModelParameters = {
226
239
  * 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`
227
240
  */
228
241
  budgetTokens?: number | undefined;
242
+ /**
243
+ * Controls the verbosity of the model output.
244
+ */
245
+ verbosity?: GetOnePromptVerbosity | undefined;
229
246
  };
230
247
 
231
248
  export const GetOnePromptProvider = {
@@ -968,6 +985,27 @@ export namespace GetOnePromptReasoningEffort$ {
968
985
  export const outboundSchema = GetOnePromptReasoningEffort$outboundSchema;
969
986
  }
970
987
 
988
+ /** @internal */
989
+ export const GetOnePromptVerbosity$inboundSchema: z.ZodNativeEnum<
990
+ typeof GetOnePromptVerbosity
991
+ > = z.nativeEnum(GetOnePromptVerbosity);
992
+
993
+ /** @internal */
994
+ export const GetOnePromptVerbosity$outboundSchema: z.ZodNativeEnum<
995
+ typeof GetOnePromptVerbosity
996
+ > = GetOnePromptVerbosity$inboundSchema;
997
+
998
+ /**
999
+ * @internal
1000
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1001
+ */
1002
+ export namespace GetOnePromptVerbosity$ {
1003
+ /** @deprecated use `GetOnePromptVerbosity$inboundSchema` instead. */
1004
+ export const inboundSchema = GetOnePromptVerbosity$inboundSchema;
1005
+ /** @deprecated use `GetOnePromptVerbosity$outboundSchema` instead. */
1006
+ export const outboundSchema = GetOnePromptVerbosity$outboundSchema;
1007
+ }
1008
+
971
1009
  /** @internal */
972
1010
  export const GetOnePromptModelParameters$inboundSchema: z.ZodType<
973
1011
  GetOnePromptModelParameters,
@@ -996,6 +1034,7 @@ export const GetOnePromptModelParameters$inboundSchema: z.ZodType<
996
1034
  encoding_format: GetOnePromptEncodingFormat$inboundSchema.optional(),
997
1035
  reasoningEffort: GetOnePromptReasoningEffort$inboundSchema.optional(),
998
1036
  budgetTokens: z.number().optional(),
1037
+ verbosity: GetOnePromptVerbosity$inboundSchema.optional(),
999
1038
  }).transform((v) => {
1000
1039
  return remap$(v, {
1001
1040
  "encoding_format": "encodingFormat",
@@ -1025,6 +1064,7 @@ export type GetOnePromptModelParameters$Outbound = {
1025
1064
  encoding_format?: string | undefined;
1026
1065
  reasoningEffort?: string | undefined;
1027
1066
  budgetTokens?: number | undefined;
1067
+ verbosity?: string | undefined;
1028
1068
  };
1029
1069
 
1030
1070
  /** @internal */
@@ -1055,6 +1095,7 @@ export const GetOnePromptModelParameters$outboundSchema: z.ZodType<
1055
1095
  encodingFormat: GetOnePromptEncodingFormat$outboundSchema.optional(),
1056
1096
  reasoningEffort: GetOnePromptReasoningEffort$outboundSchema.optional(),
1057
1097
  budgetTokens: z.number().optional(),
1098
+ verbosity: GetOnePromptVerbosity$outboundSchema.optional(),
1058
1099
  }).transform((v) => {
1059
1100
  return remap$(v, {
1060
1101
  encodingFormat: "encoding_format",
@@ -143,6 +143,21 @@ export type GetPromptVersionReasoningEffort = ClosedEnum<
143
143
  typeof GetPromptVersionReasoningEffort
144
144
  >;
145
145
 
146
+ /**
147
+ * Controls the verbosity of the model output.
148
+ */
149
+ export const GetPromptVersionVerbosity = {
150
+ Low: "low",
151
+ Medium: "medium",
152
+ High: "high",
153
+ } as const;
154
+ /**
155
+ * Controls the verbosity of the model output.
156
+ */
157
+ export type GetPromptVersionVerbosity = ClosedEnum<
158
+ typeof GetPromptVersionVerbosity
159
+ >;
160
+
146
161
  /**
147
162
  * Model Parameters: Not all parameters apply to every model
148
163
  */
@@ -227,6 +242,10 @@ export type GetPromptVersionModelParameters = {
227
242
  * 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`
228
243
  */
229
244
  budgetTokens?: number | undefined;
245
+ /**
246
+ * Controls the verbosity of the model output.
247
+ */
248
+ verbosity?: GetPromptVersionVerbosity | undefined;
230
249
  };
231
250
 
232
251
  export const GetPromptVersionProvider = {
@@ -971,6 +990,27 @@ export namespace GetPromptVersionReasoningEffort$ {
971
990
  export const outboundSchema = GetPromptVersionReasoningEffort$outboundSchema;
972
991
  }
973
992
 
993
+ /** @internal */
994
+ export const GetPromptVersionVerbosity$inboundSchema: z.ZodNativeEnum<
995
+ typeof GetPromptVersionVerbosity
996
+ > = z.nativeEnum(GetPromptVersionVerbosity);
997
+
998
+ /** @internal */
999
+ export const GetPromptVersionVerbosity$outboundSchema: z.ZodNativeEnum<
1000
+ typeof GetPromptVersionVerbosity
1001
+ > = GetPromptVersionVerbosity$inboundSchema;
1002
+
1003
+ /**
1004
+ * @internal
1005
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1006
+ */
1007
+ export namespace GetPromptVersionVerbosity$ {
1008
+ /** @deprecated use `GetPromptVersionVerbosity$inboundSchema` instead. */
1009
+ export const inboundSchema = GetPromptVersionVerbosity$inboundSchema;
1010
+ /** @deprecated use `GetPromptVersionVerbosity$outboundSchema` instead. */
1011
+ export const outboundSchema = GetPromptVersionVerbosity$outboundSchema;
1012
+ }
1013
+
974
1014
  /** @internal */
975
1015
  export const GetPromptVersionModelParameters$inboundSchema: z.ZodType<
976
1016
  GetPromptVersionModelParameters,
@@ -999,6 +1039,7 @@ export const GetPromptVersionModelParameters$inboundSchema: z.ZodType<
999
1039
  encoding_format: GetPromptVersionEncodingFormat$inboundSchema.optional(),
1000
1040
  reasoningEffort: GetPromptVersionReasoningEffort$inboundSchema.optional(),
1001
1041
  budgetTokens: z.number().optional(),
1042
+ verbosity: GetPromptVersionVerbosity$inboundSchema.optional(),
1002
1043
  }).transform((v) => {
1003
1044
  return remap$(v, {
1004
1045
  "encoding_format": "encodingFormat",
@@ -1028,6 +1069,7 @@ export type GetPromptVersionModelParameters$Outbound = {
1028
1069
  encoding_format?: string | undefined;
1029
1070
  reasoningEffort?: string | undefined;
1030
1071
  budgetTokens?: number | undefined;
1072
+ verbosity?: string | undefined;
1031
1073
  };
1032
1074
 
1033
1075
  /** @internal */
@@ -1058,6 +1100,7 @@ export const GetPromptVersionModelParameters$outboundSchema: z.ZodType<
1058
1100
  encodingFormat: GetPromptVersionEncodingFormat$outboundSchema.optional(),
1059
1101
  reasoningEffort: GetPromptVersionReasoningEffort$outboundSchema.optional(),
1060
1102
  budgetTokens: z.number().optional(),
1103
+ verbosity: GetPromptVersionVerbosity$outboundSchema.optional(),
1061
1104
  }).transform((v) => {
1062
1105
  return remap$(v, {
1063
1106
  encodingFormat: "encoding_format",
@@ -345,7 +345,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
345
345
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
346
346
  .optional(),
347
347
  updated: z.string().datetime({ offset: true }).default(
348
- "2025-08-07T14:39:06.330Z",
348
+ "2025-08-08T08:03:31.826Z",
349
349
  ).transform(v => new Date(v)),
350
350
  metrics: z.lazy(() => Metrics$inboundSchema),
351
351
  }).transform((v) => {
@@ -382,7 +382,7 @@ export const Data$outboundSchema: z.ZodType<Data$Outbound, z.ZodTypeDef, Data> =
382
382
  tags: z.array(z.string()).optional(),
383
383
  metadata: z.record(z.any()).optional(),
384
384
  created: z.date().transform(v => v.toISOString()).optional(),
385
- updated: z.date().default(() => new Date("2025-08-07T14:39:06.330Z"))
385
+ updated: z.date().default(() => new Date("2025-08-08T08:03:31.826Z"))
386
386
  .transform(v => v.toISOString()),
387
387
  metrics: z.lazy(() => Metrics$outboundSchema),
388
388
  }).transform((v) => {
@@ -2604,7 +2604,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
2604
2604
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
2605
2605
  .optional(),
2606
2606
  updated: z.string().datetime({ offset: true }).default(
2607
- "2025-08-07T14:39:06.330Z",
2607
+ "2025-08-08T08:03:31.826Z",
2608
2608
  ).transform(v => new Date(v)),
2609
2609
  }).transform((v) => {
2610
2610
  return remap$(v, {
@@ -2668,7 +2668,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
2668
2668
  createdById: z.string().optional(),
2669
2669
  updatedById: z.string().optional(),
2670
2670
  created: z.date().transform(v => v.toISOString()).optional(),
2671
- updated: z.date().default(() => new Date("2025-08-07T14:39:06.330Z"))
2671
+ updated: z.date().default(() => new Date("2025-08-08T08:03:31.826Z"))
2672
2672
  .transform(v => v.toISOString()),
2673
2673
  }).transform((v) => {
2674
2674
  return remap$(v, {
@@ -253,7 +253,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
253
253
  created: z.string().datetime({ offset: true }).transform(v => new Date(v))
254
254
  .optional(),
255
255
  updated: z.string().datetime({ offset: true }).default(
256
- "2025-08-07T14:39:06.330Z",
256
+ "2025-08-08T08:03:31.826Z",
257
257
  ).transform(v => new Date(v)),
258
258
  }).transform((v) => {
259
259
  return remap$(v, {
@@ -293,7 +293,7 @@ export const ListDatasetsData$outboundSchema: z.ZodType<
293
293
  updatedById: z.string().optional(),
294
294
  metadata: z.lazy(() => ListDatasetsMetadata$outboundSchema),
295
295
  created: z.date().transform(v => v.toISOString()).optional(),
296
- updated: z.date().default(() => new Date("2025-08-07T14:39:06.330Z"))
296
+ updated: z.date().default(() => new Date("2025-08-08T08:03:31.826Z"))
297
297
  .transform(v => v.toISOString()),
298
298
  }).transform((v) => {
299
299
  return remap$(v, {
@@ -278,7 +278,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
278
278
  z.ZodTypeDef,
279
279
  unknown
280
280
  > = z.object({
281
- _id: z.string().default("01K22FHKDABH9KGF270KNZK17P"),
281
+ _id: z.string().default("01K24B9ZRSCNBX7D6Y851K975D"),
282
282
  display_name: z.string(),
283
283
  description: z.string().optional(),
284
284
  status: ListDatasourcesStatus$inboundSchema,
@@ -322,7 +322,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
322
322
  z.ZodTypeDef,
323
323
  ListDatasourcesData
324
324
  > = z.object({
325
- id: z.string().default("01K22FHKDABH9KGF270KNZK17P"),
325
+ id: z.string().default("01K24B9ZRSCNBX7D6Y851K975D"),
326
326
  displayName: z.string(),
327
327
  description: z.string().optional(),
328
328
  status: ListDatasourcesStatus$outboundSchema,