@orq-ai/node 3.10.9 → 3.10.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/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
|
@@ -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",
|
|
@@ -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-
|
|
149
|
+
"2025-08-07T21:42:13.754Z",
|
|
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-
|
|
183
|
+
created: z.date().default(() => new Date("2025-08-07T21:42:13.754Z"))
|
|
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-
|
|
199
|
+
"2025-08-07T21:42:13.754Z",
|
|
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-
|
|
233
|
+
created: z.date().default(() => new Date("2025-08-07T21:42:13.754Z"))
|
|
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-
|
|
253
|
+
"2025-08-07T21:42:13.754Z",
|
|
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-
|
|
287
|
+
created: z.date().default(() => new Date("2025-08-07T21:42:13.754Z"))
|
|
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-
|
|
1555
|
-
updated: z.string().default("2025-08-
|
|
1554
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
1555
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
1599
|
-
updated: z.string().default("2025-08-
|
|
1598
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
1599
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
1996
|
-
updated: z.string().default("2025-08-
|
|
1995
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
1996
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
2040
|
-
updated: z.string().default("2025-08-
|
|
2039
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
2040
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
5320
|
-
updated: z.string().default("2025-08-
|
|
5319
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
5320
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
5431
|
-
updated: z.string().default("2025-08-
|
|
5430
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
5431
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
5814
|
-
updated: z.string().default("2025-08-
|
|
5813
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
5814
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
5853
|
-
updated: z.string().default("2025-08-
|
|
5852
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
5853
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
6200
|
-
updated: z.string().default("2025-08-
|
|
6199
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
6200
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
6245
|
-
updated: z.string().default("2025-08-
|
|
6244
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
6245
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
6611
|
-
updated: z.string().default("2025-08-
|
|
6610
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
6611
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
6654
|
-
updated: z.string().default("2025-08-
|
|
6653
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
6654
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
7037
|
-
updated: z.string().default("2025-08-
|
|
7036
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
7037
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
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-
|
|
7082
|
-
updated: z.string().default("2025-08-
|
|
7081
|
+
created: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
7082
|
+
updated: z.string().default("2025-08-07T21:42:12.875Z"),
|
|
7083
7083
|
guardrailConfig: z.union([
|
|
7084
7084
|
z.lazy(() =>
|
|
7085
7085
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|