@orq-ai/node 3.12.14 → 3.12.17

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 (167) hide show
  1. package/README.md +1 -4
  2. package/bin/mcp-server.js +113 -113
  3. package/bin/mcp-server.js.map +31 -31
  4. package/examples/package-lock.json +1 -1
  5. package/jsr.json +1 -1
  6. package/lib/config.d.ts +3 -3
  7. package/lib/config.js +3 -3
  8. package/lib/url.js +1 -1
  9. package/lib/url.js.map +1 -1
  10. package/mcp-server/mcp-server.js +1 -1
  11. package/mcp-server/server.js +1 -1
  12. package/models/operations/createbudget.js +2 -2
  13. package/models/operations/createcontact.js +2 -2
  14. package/models/operations/createdataset.js +2 -2
  15. package/models/operations/createdatasetitem.js +2 -2
  16. package/models/operations/createdatasource.js +2 -2
  17. package/models/operations/createeval.js +16 -16
  18. package/models/operations/fileget.js +2 -2
  19. package/models/operations/filelist.js +2 -2
  20. package/models/operations/fileupload.js +2 -2
  21. package/models/operations/getbudget.js +2 -2
  22. package/models/operations/getevals.js +28 -28
  23. package/models/operations/listbudgets.js +2 -2
  24. package/models/operations/listcontacts.js +2 -2
  25. package/models/operations/listdatasetdatapoints.js +2 -2
  26. package/models/operations/listdatasets.js +2 -2
  27. package/models/operations/listdatasources.js +2 -2
  28. package/models/operations/retrievecontact.js +2 -2
  29. package/models/operations/retrievedatapoint.js +2 -2
  30. package/models/operations/retrievedataset.js +2 -2
  31. package/models/operations/retrievedatasource.js +2 -2
  32. package/models/operations/updatebudget.js +2 -2
  33. package/models/operations/updatecontact.js +2 -2
  34. package/models/operations/updatedatapoint.js +2 -2
  35. package/models/operations/updatedataset.js +2 -2
  36. package/models/operations/updatedatasource.js +2 -2
  37. package/models/operations/updateeval.js +16 -16
  38. package/package.json +1 -1
  39. package/packages/orq-rc/README.md +108 -94
  40. package/packages/orq-rc/docs/sdks/agents/README.md +8 -2
  41. package/packages/orq-rc/docs/sdks/evals/README.md +2 -0
  42. package/packages/orq-rc/docs/sdks/tools/README.md +488 -0
  43. package/packages/orq-rc/examples/package-lock.json +1 -1
  44. package/packages/orq-rc/jsr.json +1 -1
  45. package/packages/orq-rc/package-lock.json +2 -2
  46. package/packages/orq-rc/package.json +1 -1
  47. package/packages/orq-rc/src/funcs/toolsCreate.ts +163 -0
  48. package/packages/orq-rc/src/funcs/toolsDelete.ts +167 -0
  49. package/packages/orq-rc/src/funcs/toolsDuplicate.ts +175 -0
  50. package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
  51. package/packages/orq-rc/src/funcs/toolsRetrieve.ts +166 -0
  52. package/packages/orq-rc/src/funcs/toolsUpdate.ts +176 -0
  53. package/packages/orq-rc/src/lib/config.ts +3 -3
  54. package/packages/orq-rc/src/lib/url.ts +1 -1
  55. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  56. package/packages/orq-rc/src/mcp-server/server.ts +13 -1
  57. package/packages/orq-rc/src/mcp-server/tools/toolsCreate.ts +37 -0
  58. package/packages/orq-rc/src/mcp-server/tools/toolsDelete.ts +35 -0
  59. package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +37 -0
  60. package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +37 -0
  61. package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +37 -0
  62. package/packages/orq-rc/src/mcp-server/tools/toolsUpdate.ts +37 -0
  63. package/packages/orq-rc/src/models/components/callsubagenttool.ts +109 -0
  64. package/packages/orq-rc/src/models/components/codeexecutiontool.ts +293 -0
  65. package/packages/orq-rc/src/models/components/currentdatetool.ts +107 -0
  66. package/packages/orq-rc/src/models/components/deployments.ts +52 -45
  67. package/packages/orq-rc/src/models/components/functiontool.ts +195 -0
  68. package/packages/orq-rc/src/models/components/googlesearchtool.ts +108 -0
  69. package/packages/orq-rc/src/models/components/httptool.ts +532 -0
  70. package/packages/orq-rc/src/models/components/index.ts +13 -0
  71. package/packages/orq-rc/src/models/components/queryknowledgebasetool.ts +111 -0
  72. package/packages/orq-rc/src/models/components/querymemorystoretool.ts +111 -0
  73. package/packages/orq-rc/src/models/components/retrieveagentstool.ts +109 -0
  74. package/packages/orq-rc/src/models/components/retrieveknowledgebasestool.ts +111 -0
  75. package/packages/orq-rc/src/models/components/retrievememorystorestool.ts +111 -0
  76. package/packages/orq-rc/src/models/components/webscrapertool.ts +105 -0
  77. package/packages/orq-rc/src/models/components/writememorystoretool.ts +111 -0
  78. package/packages/orq-rc/src/models/errors/duplicatetool.ts +91 -0
  79. package/packages/orq-rc/src/models/errors/index.ts +2 -0
  80. package/packages/orq-rc/src/models/errors/updatetool.ts +91 -0
  81. package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
  82. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  83. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  84. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +10 -8
  85. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  86. package/packages/orq-rc/src/models/operations/createeval.ts +199 -56
  87. package/packages/orq-rc/src/models/operations/createknowledge.ts +18 -0
  88. package/packages/orq-rc/src/models/operations/creatememorystore.ts +137 -136
  89. package/packages/orq-rc/src/models/operations/createprompt.ts +633 -314
  90. package/packages/orq-rc/src/models/operations/createtool.ts +4027 -0
  91. package/packages/orq-rc/src/models/operations/deletetool.ts +75 -0
  92. package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +8 -6
  93. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +363 -194
  94. package/packages/orq-rc/src/models/operations/deployments.ts +330 -160
  95. package/packages/orq-rc/src/models/operations/deploymentstream.ts +8 -6
  96. package/packages/orq-rc/src/models/operations/duplicatetool.ts +2311 -0
  97. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  98. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  99. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  100. package/packages/orq-rc/src/models/operations/getagent.ts +10 -10
  101. package/packages/orq-rc/src/models/operations/getallprompts.ts +334 -168
  102. package/packages/orq-rc/src/models/operations/getalltools.ts +2278 -0
  103. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
  104. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  105. package/packages/orq-rc/src/models/operations/getoneknowledge.ts +9 -0
  106. package/packages/orq-rc/src/models/operations/getoneprompt.ts +330 -167
  107. package/packages/orq-rc/src/models/operations/getpromptversion.ts +338 -168
  108. package/packages/orq-rc/src/models/operations/index.ts +6 -0
  109. package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
  110. package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
  111. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  112. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +6 -5
  113. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  114. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  115. package/packages/orq-rc/src/models/operations/listknowledgebases.ts +9 -0
  116. package/packages/orq-rc/src/models/operations/listpromptversions.ts +355 -183
  117. package/packages/orq-rc/src/models/operations/parse.ts +20 -335
  118. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  119. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +6 -5
  120. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  121. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  122. package/packages/orq-rc/src/models/operations/retrievetool.ts +2303 -0
  123. package/packages/orq-rc/src/models/operations/runagent.ts +428 -1384
  124. package/packages/orq-rc/src/models/operations/searchknowledge.ts +2 -2
  125. package/packages/orq-rc/src/models/operations/streamrunagent.ts +409 -1452
  126. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
  127. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  128. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +10 -8
  129. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  130. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  131. package/packages/orq-rc/src/models/operations/updateeval.ts +210 -57
  132. package/packages/orq-rc/src/models/operations/updateknowledge.ts +18 -0
  133. package/packages/orq-rc/src/models/operations/updatememorystore.ts +136 -168
  134. package/packages/orq-rc/src/models/operations/updateprompt.ts +670 -335
  135. package/packages/orq-rc/src/models/operations/updatetool.ts +4231 -0
  136. package/packages/orq-rc/src/sdk/sdk.ts +6 -0
  137. package/packages/orq-rc/src/sdk/tools.ts +117 -0
  138. package/src/lib/config.ts +3 -3
  139. package/src/lib/url.ts +1 -1
  140. package/src/mcp-server/mcp-server.ts +1 -1
  141. package/src/mcp-server/server.ts +1 -1
  142. package/src/models/operations/createbudget.ts +2 -2
  143. package/src/models/operations/createcontact.ts +2 -2
  144. package/src/models/operations/createdataset.ts +2 -2
  145. package/src/models/operations/createdatasetitem.ts +2 -2
  146. package/src/models/operations/createdatasource.ts +2 -2
  147. package/src/models/operations/createeval.ts +16 -16
  148. package/src/models/operations/fileget.ts +2 -2
  149. package/src/models/operations/filelist.ts +2 -2
  150. package/src/models/operations/fileupload.ts +2 -2
  151. package/src/models/operations/getbudget.ts +2 -2
  152. package/src/models/operations/getevals.ts +28 -28
  153. package/src/models/operations/listbudgets.ts +2 -2
  154. package/src/models/operations/listcontacts.ts +2 -2
  155. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  156. package/src/models/operations/listdatasets.ts +2 -2
  157. package/src/models/operations/listdatasources.ts +2 -2
  158. package/src/models/operations/retrievecontact.ts +2 -2
  159. package/src/models/operations/retrievedatapoint.ts +2 -2
  160. package/src/models/operations/retrievedataset.ts +2 -2
  161. package/src/models/operations/retrievedatasource.ts +2 -2
  162. package/src/models/operations/updatebudget.ts +2 -2
  163. package/src/models/operations/updatecontact.ts +2 -2
  164. package/src/models/operations/updatedatapoint.ts +2 -2
  165. package/src/models/operations/updatedataset.ts +2 -2
  166. package/src/models/operations/updatedatasource.ts +2 -2
  167. package/src/models/operations/updateeval.ts +16 -16
@@ -52,6 +52,15 @@ export type CreateEvalRequestBodyEvalsGuardrailConfig =
52
52
  | CreateEvalGuardrailConfigEvalsNumber
53
53
  | CreateEvalGuardrailConfigEvalsBoolean;
54
54
 
55
+ export const CreateEvalRequestBodyEvalsOutputType = {
56
+ Boolean: "boolean",
57
+ Number: "number",
58
+ String: "string",
59
+ } as const;
60
+ export type CreateEvalRequestBodyEvalsOutputType = ClosedEnum<
61
+ typeof CreateEvalRequestBodyEvalsOutputType
62
+ >;
63
+
55
64
  export const CreateEvalRequestBodyEvalsRequestType = {
56
65
  PythonEval: "python_eval",
57
66
  } as const;
@@ -64,6 +73,7 @@ export type Python = {
64
73
  | CreateEvalGuardrailConfigEvalsNumber
65
74
  | CreateEvalGuardrailConfigEvalsBoolean
66
75
  | undefined;
76
+ outputType: CreateEvalRequestBodyEvalsOutputType;
67
77
  code: string;
68
78
  type: CreateEvalRequestBodyEvalsRequestType;
69
79
  /**
@@ -117,6 +127,15 @@ export type CreateEvalRequestBodyGuardrailConfig =
117
127
  | CreateEvalGuardrailConfigNumber
118
128
  | CreateEvalGuardrailConfigBoolean;
119
129
 
130
+ export const CreateEvalRequestBodyOutputType = {
131
+ Boolean: "boolean",
132
+ Number: "number",
133
+ String: "string",
134
+ } as const;
135
+ export type CreateEvalRequestBodyOutputType = ClosedEnum<
136
+ typeof CreateEvalRequestBodyOutputType
137
+ >;
138
+
120
139
  export const CreateEvalRequestBodyEvalsType = {
121
140
  HttpEval: "http_eval",
122
141
  } as const;
@@ -135,6 +154,7 @@ export type RequestBodyHTTP = {
135
154
  | CreateEvalGuardrailConfigNumber
136
155
  | CreateEvalGuardrailConfigBoolean
137
156
  | undefined;
157
+ outputType: CreateEvalRequestBodyOutputType;
138
158
  type: CreateEvalRequestBodyEvalsType;
139
159
  url: string;
140
160
  method: RequestBodyMethod;
@@ -191,6 +211,11 @@ export type RequestBodyGuardrailConfig =
191
211
  | GuardrailConfigNumber
192
212
  | GuardrailConfigBoolean;
193
213
 
214
+ export const RequestBodyOutputType = {
215
+ Boolean: "boolean",
216
+ } as const;
217
+ export type RequestBodyOutputType = ClosedEnum<typeof RequestBodyOutputType>;
218
+
194
219
  export const CreateEvalRequestBodyType = {
195
220
  JsonSchema: "json_schema",
196
221
  } as const;
@@ -200,6 +225,7 @@ export type CreateEvalRequestBodyType = ClosedEnum<
200
225
 
201
226
  export type Json = {
202
227
  guardrailConfig?: GuardrailConfigNumber | GuardrailConfigBoolean | undefined;
228
+ outputType: RequestBodyOutputType;
203
229
  type: CreateEvalRequestBodyType;
204
230
  schema: string;
205
231
  /**
@@ -247,6 +273,13 @@ export type Boolean = {
247
273
 
248
274
  export type GuardrailConfig = NumberT | Boolean;
249
275
 
276
+ export const OutputType = {
277
+ Boolean: "boolean",
278
+ Number: "number",
279
+ String: "string",
280
+ } as const;
281
+ export type OutputType = ClosedEnum<typeof OutputType>;
282
+
250
283
  export const RequestBodyType = {
251
284
  LlmEval: "llm_eval",
252
285
  } as const;
@@ -254,6 +287,7 @@ export type RequestBodyType = ClosedEnum<typeof RequestBodyType>;
254
287
 
255
288
  export type Llm = {
256
289
  guardrailConfig?: NumberT | Boolean | undefined;
290
+ outputType: OutputType;
257
291
  type: RequestBodyType;
258
292
  prompt: string;
259
293
  /**
@@ -658,7 +692,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
658
692
  typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody524Type
659
693
  >;
660
694
 
661
- export type TwentyFour = {
695
+ export type FunctionParams24 = {
662
696
  type:
663
697
  CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody524Type;
664
698
  };
@@ -1002,7 +1036,7 @@ export type CreateEvalResponseBodyFunctionParams =
1002
1036
  | FunctionParams21
1003
1037
  | FunctionParams22
1004
1038
  | TwentyThree
1005
- | TwentyFour
1039
+ | FunctionParams24
1006
1040
  | TwentySeven
1007
1041
  | TwentyEight
1008
1042
  | TwentyNine
@@ -1049,7 +1083,7 @@ export type ResponseBodyFunction = {
1049
1083
  | FunctionParams21
1050
1084
  | FunctionParams22
1051
1085
  | TwentyThree
1052
- | TwentyFour
1086
+ | FunctionParams24
1053
1087
  | TwentySeven
1054
1088
  | TwentyEight
1055
1089
  | TwentyNine
@@ -1636,6 +1670,30 @@ export function createEvalRequestBodyEvalsGuardrailConfigFromJSON(
1636
1670
  );
1637
1671
  }
1638
1672
 
1673
+ /** @internal */
1674
+ export const CreateEvalRequestBodyEvalsOutputType$inboundSchema:
1675
+ z.ZodNativeEnum<typeof CreateEvalRequestBodyEvalsOutputType> = z.nativeEnum(
1676
+ CreateEvalRequestBodyEvalsOutputType,
1677
+ );
1678
+
1679
+ /** @internal */
1680
+ export const CreateEvalRequestBodyEvalsOutputType$outboundSchema:
1681
+ z.ZodNativeEnum<typeof CreateEvalRequestBodyEvalsOutputType> =
1682
+ CreateEvalRequestBodyEvalsOutputType$inboundSchema;
1683
+
1684
+ /**
1685
+ * @internal
1686
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1687
+ */
1688
+ export namespace CreateEvalRequestBodyEvalsOutputType$ {
1689
+ /** @deprecated use `CreateEvalRequestBodyEvalsOutputType$inboundSchema` instead. */
1690
+ export const inboundSchema =
1691
+ CreateEvalRequestBodyEvalsOutputType$inboundSchema;
1692
+ /** @deprecated use `CreateEvalRequestBodyEvalsOutputType$outboundSchema` instead. */
1693
+ export const outboundSchema =
1694
+ CreateEvalRequestBodyEvalsOutputType$outboundSchema;
1695
+ }
1696
+
1639
1697
  /** @internal */
1640
1698
  export const CreateEvalRequestBodyEvalsRequestType$inboundSchema:
1641
1699
  z.ZodNativeEnum<typeof CreateEvalRequestBodyEvalsRequestType> = z.nativeEnum(
@@ -1667,6 +1725,7 @@ export const Python$inboundSchema: z.ZodType<Python, z.ZodTypeDef, unknown> = z
1667
1725
  z.lazy(() => CreateEvalGuardrailConfigEvalsNumber$inboundSchema),
1668
1726
  z.lazy(() => CreateEvalGuardrailConfigEvalsBoolean$inboundSchema),
1669
1727
  ]).optional(),
1728
+ output_type: CreateEvalRequestBodyEvalsOutputType$inboundSchema,
1670
1729
  code: z.string(),
1671
1730
  type: CreateEvalRequestBodyEvalsRequestType$inboundSchema,
1672
1731
  path: z.string(),
@@ -1675,6 +1734,7 @@ export const Python$inboundSchema: z.ZodType<Python, z.ZodTypeDef, unknown> = z
1675
1734
  }).transform((v) => {
1676
1735
  return remap$(v, {
1677
1736
  "guardrail_config": "guardrailConfig",
1737
+ "output_type": "outputType",
1678
1738
  });
1679
1739
  });
1680
1740
 
@@ -1684,6 +1744,7 @@ export type Python$Outbound = {
1684
1744
  | CreateEvalGuardrailConfigEvalsNumber$Outbound
1685
1745
  | CreateEvalGuardrailConfigEvalsBoolean$Outbound
1686
1746
  | undefined;
1747
+ output_type: string;
1687
1748
  code: string;
1688
1749
  type: string;
1689
1750
  path: string;
@@ -1701,6 +1762,7 @@ export const Python$outboundSchema: z.ZodType<
1701
1762
  z.lazy(() => CreateEvalGuardrailConfigEvalsNumber$outboundSchema),
1702
1763
  z.lazy(() => CreateEvalGuardrailConfigEvalsBoolean$outboundSchema),
1703
1764
  ]).optional(),
1765
+ outputType: CreateEvalRequestBodyEvalsOutputType$outboundSchema,
1704
1766
  code: z.string(),
1705
1767
  type: CreateEvalRequestBodyEvalsRequestType$outboundSchema,
1706
1768
  path: z.string(),
@@ -1709,6 +1771,7 @@ export const Python$outboundSchema: z.ZodType<
1709
1771
  }).transform((v) => {
1710
1772
  return remap$(v, {
1711
1773
  guardrailConfig: "guardrail_config",
1774
+ outputType: "output_type",
1712
1775
  });
1713
1776
  });
1714
1777
 
@@ -1997,6 +2060,27 @@ export function createEvalRequestBodyGuardrailConfigFromJSON(
1997
2060
  );
1998
2061
  }
1999
2062
 
2063
+ /** @internal */
2064
+ export const CreateEvalRequestBodyOutputType$inboundSchema: z.ZodNativeEnum<
2065
+ typeof CreateEvalRequestBodyOutputType
2066
+ > = z.nativeEnum(CreateEvalRequestBodyOutputType);
2067
+
2068
+ /** @internal */
2069
+ export const CreateEvalRequestBodyOutputType$outboundSchema: z.ZodNativeEnum<
2070
+ typeof CreateEvalRequestBodyOutputType
2071
+ > = CreateEvalRequestBodyOutputType$inboundSchema;
2072
+
2073
+ /**
2074
+ * @internal
2075
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2076
+ */
2077
+ export namespace CreateEvalRequestBodyOutputType$ {
2078
+ /** @deprecated use `CreateEvalRequestBodyOutputType$inboundSchema` instead. */
2079
+ export const inboundSchema = CreateEvalRequestBodyOutputType$inboundSchema;
2080
+ /** @deprecated use `CreateEvalRequestBodyOutputType$outboundSchema` instead. */
2081
+ export const outboundSchema = CreateEvalRequestBodyOutputType$outboundSchema;
2082
+ }
2083
+
2000
2084
  /** @internal */
2001
2085
  export const CreateEvalRequestBodyEvalsType$inboundSchema: z.ZodNativeEnum<
2002
2086
  typeof CreateEvalRequestBodyEvalsType
@@ -2049,6 +2133,7 @@ export const RequestBodyHTTP$inboundSchema: z.ZodType<
2049
2133
  z.lazy(() => CreateEvalGuardrailConfigNumber$inboundSchema),
2050
2134
  z.lazy(() => CreateEvalGuardrailConfigBoolean$inboundSchema),
2051
2135
  ]).optional(),
2136
+ output_type: CreateEvalRequestBodyOutputType$inboundSchema,
2052
2137
  type: CreateEvalRequestBodyEvalsType$inboundSchema,
2053
2138
  url: z.string(),
2054
2139
  method: RequestBodyMethod$inboundSchema,
@@ -2060,6 +2145,7 @@ export const RequestBodyHTTP$inboundSchema: z.ZodType<
2060
2145
  }).transform((v) => {
2061
2146
  return remap$(v, {
2062
2147
  "guardrail_config": "guardrailConfig",
2148
+ "output_type": "outputType",
2063
2149
  });
2064
2150
  });
2065
2151
 
@@ -2069,6 +2155,7 @@ export type RequestBodyHTTP$Outbound = {
2069
2155
  | CreateEvalGuardrailConfigNumber$Outbound
2070
2156
  | CreateEvalGuardrailConfigBoolean$Outbound
2071
2157
  | undefined;
2158
+ output_type: string;
2072
2159
  type: string;
2073
2160
  url: string;
2074
2161
  method: string;
@@ -2089,6 +2176,7 @@ export const RequestBodyHTTP$outboundSchema: z.ZodType<
2089
2176
  z.lazy(() => CreateEvalGuardrailConfigNumber$outboundSchema),
2090
2177
  z.lazy(() => CreateEvalGuardrailConfigBoolean$outboundSchema),
2091
2178
  ]).optional(),
2179
+ outputType: CreateEvalRequestBodyOutputType$outboundSchema,
2092
2180
  type: CreateEvalRequestBodyEvalsType$outboundSchema,
2093
2181
  url: z.string(),
2094
2182
  method: RequestBodyMethod$outboundSchema,
@@ -2100,6 +2188,7 @@ export const RequestBodyHTTP$outboundSchema: z.ZodType<
2100
2188
  }).transform((v) => {
2101
2189
  return remap$(v, {
2102
2190
  guardrailConfig: "guardrail_config",
2191
+ outputType: "output_type",
2103
2192
  });
2104
2193
  });
2105
2194
 
@@ -2377,6 +2466,27 @@ export function requestBodyGuardrailConfigFromJSON(
2377
2466
  );
2378
2467
  }
2379
2468
 
2469
+ /** @internal */
2470
+ export const RequestBodyOutputType$inboundSchema: z.ZodNativeEnum<
2471
+ typeof RequestBodyOutputType
2472
+ > = z.nativeEnum(RequestBodyOutputType);
2473
+
2474
+ /** @internal */
2475
+ export const RequestBodyOutputType$outboundSchema: z.ZodNativeEnum<
2476
+ typeof RequestBodyOutputType
2477
+ > = RequestBodyOutputType$inboundSchema;
2478
+
2479
+ /**
2480
+ * @internal
2481
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2482
+ */
2483
+ export namespace RequestBodyOutputType$ {
2484
+ /** @deprecated use `RequestBodyOutputType$inboundSchema` instead. */
2485
+ export const inboundSchema = RequestBodyOutputType$inboundSchema;
2486
+ /** @deprecated use `RequestBodyOutputType$outboundSchema` instead. */
2487
+ export const outboundSchema = RequestBodyOutputType$outboundSchema;
2488
+ }
2489
+
2380
2490
  /** @internal */
2381
2491
  export const CreateEvalRequestBodyType$inboundSchema: z.ZodNativeEnum<
2382
2492
  typeof CreateEvalRequestBodyType
@@ -2405,6 +2515,7 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
2405
2515
  z.lazy(() => GuardrailConfigNumber$inboundSchema),
2406
2516
  z.lazy(() => GuardrailConfigBoolean$inboundSchema),
2407
2517
  ]).optional(),
2518
+ output_type: RequestBodyOutputType$inboundSchema,
2408
2519
  type: CreateEvalRequestBodyType$inboundSchema,
2409
2520
  schema: z.string(),
2410
2521
  path: z.string(),
@@ -2413,6 +2524,7 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
2413
2524
  }).transform((v) => {
2414
2525
  return remap$(v, {
2415
2526
  "guardrail_config": "guardrailConfig",
2527
+ "output_type": "outputType",
2416
2528
  });
2417
2529
  });
2418
2530
 
@@ -2422,6 +2534,7 @@ export type Json$Outbound = {
2422
2534
  | GuardrailConfigNumber$Outbound
2423
2535
  | GuardrailConfigBoolean$Outbound
2424
2536
  | undefined;
2537
+ output_type: string;
2425
2538
  type: string;
2426
2539
  schema: string;
2427
2540
  path: string;
@@ -2436,6 +2549,7 @@ export const Json$outboundSchema: z.ZodType<Json$Outbound, z.ZodTypeDef, Json> =
2436
2549
  z.lazy(() => GuardrailConfigNumber$outboundSchema),
2437
2550
  z.lazy(() => GuardrailConfigBoolean$outboundSchema),
2438
2551
  ]).optional(),
2552
+ outputType: RequestBodyOutputType$outboundSchema,
2439
2553
  type: CreateEvalRequestBodyType$outboundSchema,
2440
2554
  schema: z.string(),
2441
2555
  path: z.string(),
@@ -2444,6 +2558,7 @@ export const Json$outboundSchema: z.ZodType<Json$Outbound, z.ZodTypeDef, Json> =
2444
2558
  }).transform((v) => {
2445
2559
  return remap$(v, {
2446
2560
  guardrailConfig: "guardrail_config",
2561
+ outputType: "output_type",
2447
2562
  });
2448
2563
  });
2449
2564
 
@@ -2696,6 +2811,25 @@ export function guardrailConfigFromJSON(
2696
2811
  );
2697
2812
  }
2698
2813
 
2814
+ /** @internal */
2815
+ export const OutputType$inboundSchema: z.ZodNativeEnum<typeof OutputType> = z
2816
+ .nativeEnum(OutputType);
2817
+
2818
+ /** @internal */
2819
+ export const OutputType$outboundSchema: z.ZodNativeEnum<typeof OutputType> =
2820
+ OutputType$inboundSchema;
2821
+
2822
+ /**
2823
+ * @internal
2824
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2825
+ */
2826
+ export namespace OutputType$ {
2827
+ /** @deprecated use `OutputType$inboundSchema` instead. */
2828
+ export const inboundSchema = OutputType$inboundSchema;
2829
+ /** @deprecated use `OutputType$outboundSchema` instead. */
2830
+ export const outboundSchema = OutputType$outboundSchema;
2831
+ }
2832
+
2699
2833
  /** @internal */
2700
2834
  export const RequestBodyType$inboundSchema: z.ZodNativeEnum<
2701
2835
  typeof RequestBodyType
@@ -2724,6 +2858,7 @@ export const Llm$inboundSchema: z.ZodType<Llm, z.ZodTypeDef, unknown> = z
2724
2858
  z.lazy(() => NumberT$inboundSchema),
2725
2859
  z.lazy(() => Boolean$inboundSchema),
2726
2860
  ]).optional(),
2861
+ output_type: OutputType$inboundSchema,
2727
2862
  type: RequestBodyType$inboundSchema,
2728
2863
  prompt: z.string(),
2729
2864
  path: z.string(),
@@ -2733,12 +2868,14 @@ export const Llm$inboundSchema: z.ZodType<Llm, z.ZodTypeDef, unknown> = z
2733
2868
  }).transform((v) => {
2734
2869
  return remap$(v, {
2735
2870
  "guardrail_config": "guardrailConfig",
2871
+ "output_type": "outputType",
2736
2872
  });
2737
2873
  });
2738
2874
 
2739
2875
  /** @internal */
2740
2876
  export type Llm$Outbound = {
2741
2877
  guardrail_config?: NumberT$Outbound | Boolean$Outbound | undefined;
2878
+ output_type: string;
2742
2879
  type: string;
2743
2880
  prompt: string;
2744
2881
  path: string;
@@ -2754,6 +2891,7 @@ export const Llm$outboundSchema: z.ZodType<Llm$Outbound, z.ZodTypeDef, Llm> = z
2754
2891
  z.lazy(() => NumberT$outboundSchema),
2755
2892
  z.lazy(() => Boolean$outboundSchema),
2756
2893
  ]).optional(),
2894
+ outputType: OutputType$outboundSchema,
2757
2895
  type: RequestBodyType$outboundSchema,
2758
2896
  prompt: z.string(),
2759
2897
  path: z.string(),
@@ -2763,6 +2901,7 @@ export const Llm$outboundSchema: z.ZodType<Llm$Outbound, z.ZodTypeDef, Llm> = z
2763
2901
  }).transform((v) => {
2764
2902
  return remap$(v, {
2765
2903
  guardrailConfig: "guardrail_config",
2904
+ outputType: "output_type",
2766
2905
  });
2767
2906
  });
2768
2907
 
@@ -3209,8 +3348,8 @@ export const Typescript$inboundSchema: z.ZodType<
3209
3348
  > = z.object({
3210
3349
  _id: z.string(),
3211
3350
  description: z.string(),
3212
- created: z.string().default("2025-09-22T14:20:43.147Z"),
3213
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
3351
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
3352
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
3214
3353
  guardrail_config: z.union([
3215
3354
  z.lazy(() =>
3216
3355
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
@@ -3253,8 +3392,8 @@ export const Typescript$outboundSchema: z.ZodType<
3253
3392
  > = z.object({
3254
3393
  id: z.string(),
3255
3394
  description: z.string(),
3256
- created: z.string().default("2025-09-22T14:20:43.147Z"),
3257
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
3395
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
3396
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
3258
3397
  guardrailConfig: z.union([
3259
3398
  z.lazy(() =>
3260
3399
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
@@ -3671,8 +3810,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
3671
3810
  .object({
3672
3811
  _id: z.string(),
3673
3812
  description: z.string(),
3674
- created: z.string().default("2025-09-22T14:20:43.147Z"),
3675
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
3813
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
3814
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
3676
3815
  guardrail_config: z.union([
3677
3816
  z.lazy(() =>
3678
3817
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
@@ -3718,8 +3857,8 @@ export const Ragas$outboundSchema: z.ZodType<
3718
3857
  > = z.object({
3719
3858
  id: z.string(),
3720
3859
  description: z.string(),
3721
- created: z.string().default("2025-09-22T14:20:43.147Z"),
3722
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
3860
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
3861
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
3723
3862
  guardrailConfig: z.union([
3724
3863
  z.lazy(() =>
3725
3864
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
@@ -5024,8 +5163,8 @@ export namespace CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponse
5024
5163
  }
5025
5164
 
5026
5165
  /** @internal */
5027
- export const TwentyFour$inboundSchema: z.ZodType<
5028
- TwentyFour,
5166
+ export const FunctionParams24$inboundSchema: z.ZodType<
5167
+ FunctionParams24,
5029
5168
  z.ZodTypeDef,
5030
5169
  unknown
5031
5170
  > = z.object({
@@ -5034,15 +5173,15 @@ export const TwentyFour$inboundSchema: z.ZodType<
5034
5173
  });
5035
5174
 
5036
5175
  /** @internal */
5037
- export type TwentyFour$Outbound = {
5176
+ export type FunctionParams24$Outbound = {
5038
5177
  type: string;
5039
5178
  };
5040
5179
 
5041
5180
  /** @internal */
5042
- export const TwentyFour$outboundSchema: z.ZodType<
5043
- TwentyFour$Outbound,
5181
+ export const FunctionParams24$outboundSchema: z.ZodType<
5182
+ FunctionParams24$Outbound,
5044
5183
  z.ZodTypeDef,
5045
- TwentyFour
5184
+ FunctionParams24
5046
5185
  > = z.object({
5047
5186
  type:
5048
5187
  CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody524Type$outboundSchema,
@@ -5052,26 +5191,30 @@ export const TwentyFour$outboundSchema: z.ZodType<
5052
5191
  * @internal
5053
5192
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5054
5193
  */
5055
- export namespace TwentyFour$ {
5056
- /** @deprecated use `TwentyFour$inboundSchema` instead. */
5057
- export const inboundSchema = TwentyFour$inboundSchema;
5058
- /** @deprecated use `TwentyFour$outboundSchema` instead. */
5059
- export const outboundSchema = TwentyFour$outboundSchema;
5060
- /** @deprecated use `TwentyFour$Outbound` instead. */
5061
- export type Outbound = TwentyFour$Outbound;
5194
+ export namespace FunctionParams24$ {
5195
+ /** @deprecated use `FunctionParams24$inboundSchema` instead. */
5196
+ export const inboundSchema = FunctionParams24$inboundSchema;
5197
+ /** @deprecated use `FunctionParams24$outboundSchema` instead. */
5198
+ export const outboundSchema = FunctionParams24$outboundSchema;
5199
+ /** @deprecated use `FunctionParams24$Outbound` instead. */
5200
+ export type Outbound = FunctionParams24$Outbound;
5062
5201
  }
5063
5202
 
5064
- export function twentyFourToJSON(twentyFour: TwentyFour): string {
5065
- return JSON.stringify(TwentyFour$outboundSchema.parse(twentyFour));
5203
+ export function functionParams24ToJSON(
5204
+ functionParams24: FunctionParams24,
5205
+ ): string {
5206
+ return JSON.stringify(
5207
+ FunctionParams24$outboundSchema.parse(functionParams24),
5208
+ );
5066
5209
  }
5067
5210
 
5068
- export function twentyFourFromJSON(
5211
+ export function functionParams24FromJSON(
5069
5212
  jsonString: string,
5070
- ): SafeParseResult<TwentyFour, SDKValidationError> {
5213
+ ): SafeParseResult<FunctionParams24, SDKValidationError> {
5071
5214
  return safeParse(
5072
5215
  jsonString,
5073
- (x) => TwentyFour$inboundSchema.parse(JSON.parse(x)),
5074
- `Failed to parse 'TwentyFour' from JSON`,
5216
+ (x) => FunctionParams24$inboundSchema.parse(JSON.parse(x)),
5217
+ `Failed to parse 'FunctionParams24' from JSON`,
5075
5218
  );
5076
5219
  }
5077
5220
 
@@ -7006,7 +7149,7 @@ export const CreateEvalResponseBodyFunctionParams$inboundSchema: z.ZodType<
7006
7149
  z.lazy(() => FunctionParams21$inboundSchema),
7007
7150
  z.lazy(() => FunctionParams22$inboundSchema),
7008
7151
  z.lazy(() => TwentyThree$inboundSchema),
7009
- z.lazy(() => TwentyFour$inboundSchema),
7152
+ z.lazy(() => FunctionParams24$inboundSchema),
7010
7153
  z.lazy(() => TwentySeven$inboundSchema),
7011
7154
  z.lazy(() => TwentyEight$inboundSchema),
7012
7155
  z.lazy(() => TwentyNine$inboundSchema),
@@ -7045,7 +7188,7 @@ export type CreateEvalResponseBodyFunctionParams$Outbound =
7045
7188
  | FunctionParams21$Outbound
7046
7189
  | FunctionParams22$Outbound
7047
7190
  | TwentyThree$Outbound
7048
- | TwentyFour$Outbound
7191
+ | FunctionParams24$Outbound
7049
7192
  | TwentySeven$Outbound
7050
7193
  | TwentyEight$Outbound
7051
7194
  | TwentyNine$Outbound
@@ -7087,7 +7230,7 @@ export const CreateEvalResponseBodyFunctionParams$outboundSchema: z.ZodType<
7087
7230
  z.lazy(() => FunctionParams21$outboundSchema),
7088
7231
  z.lazy(() => FunctionParams22$outboundSchema),
7089
7232
  z.lazy(() => TwentyThree$outboundSchema),
7090
- z.lazy(() => TwentyFour$outboundSchema),
7233
+ z.lazy(() => FunctionParams24$outboundSchema),
7091
7234
  z.lazy(() => TwentySeven$outboundSchema),
7092
7235
  z.lazy(() => TwentyEight$outboundSchema),
7093
7236
  z.lazy(() => TwentyNine$outboundSchema),
@@ -7143,8 +7286,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
7143
7286
  > = z.object({
7144
7287
  _id: z.string(),
7145
7288
  description: z.string(),
7146
- created: z.string().default("2025-09-22T14:20:43.147Z"),
7147
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
7289
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
7290
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
7148
7291
  guardrail_config: z.union([
7149
7292
  z.lazy(() =>
7150
7293
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
@@ -7180,7 +7323,7 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
7180
7323
  z.lazy(() => FunctionParams21$inboundSchema),
7181
7324
  z.lazy(() => FunctionParams22$inboundSchema),
7182
7325
  z.lazy(() => TwentyThree$inboundSchema),
7183
- z.lazy(() => TwentyFour$inboundSchema),
7326
+ z.lazy(() => FunctionParams24$inboundSchema),
7184
7327
  z.lazy(() => TwentySeven$inboundSchema),
7185
7328
  z.lazy(() => TwentyEight$inboundSchema),
7186
7329
  z.lazy(() => TwentyNine$inboundSchema),
@@ -7237,7 +7380,7 @@ export type ResponseBodyFunction$Outbound = {
7237
7380
  | FunctionParams21$Outbound
7238
7381
  | FunctionParams22$Outbound
7239
7382
  | TwentyThree$Outbound
7240
- | TwentyFour$Outbound
7383
+ | FunctionParams24$Outbound
7241
7384
  | TwentySeven$Outbound
7242
7385
  | TwentyEight$Outbound
7243
7386
  | TwentyNine$Outbound
@@ -7258,8 +7401,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
7258
7401
  > = z.object({
7259
7402
  id: z.string(),
7260
7403
  description: z.string(),
7261
- created: z.string().default("2025-09-22T14:20:43.147Z"),
7262
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
7404
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
7405
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
7263
7406
  guardrailConfig: z.union([
7264
7407
  z.lazy(() =>
7265
7408
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
@@ -7295,7 +7438,7 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
7295
7438
  z.lazy(() => FunctionParams21$outboundSchema),
7296
7439
  z.lazy(() => FunctionParams22$outboundSchema),
7297
7440
  z.lazy(() => TwentyThree$outboundSchema),
7298
- z.lazy(() => TwentyFour$outboundSchema),
7441
+ z.lazy(() => FunctionParams24$outboundSchema),
7299
7442
  z.lazy(() => TwentySeven$outboundSchema),
7300
7443
  z.lazy(() => TwentyEight$outboundSchema),
7301
7444
  z.lazy(() => TwentyNine$outboundSchema),
@@ -7698,8 +7841,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
7698
7841
  > = z.object({
7699
7842
  _id: z.string(),
7700
7843
  description: z.string(),
7701
- created: z.string().default("2025-09-22T14:20:43.147Z"),
7702
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
7844
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
7845
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
7703
7846
  guardrail_config: z.union([
7704
7847
  z.lazy(() =>
7705
7848
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
@@ -7741,8 +7884,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
7741
7884
  > = z.object({
7742
7885
  id: z.string(),
7743
7886
  description: z.string(),
7744
- created: z.string().default("2025-09-22T14:20:43.147Z"),
7745
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
7887
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
7888
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
7746
7889
  guardrailConfig: z.union([
7747
7890
  z.lazy(() =>
7748
7891
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
@@ -8155,8 +8298,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
8155
8298
  > = z.object({
8156
8299
  _id: z.string(),
8157
8300
  description: z.string(),
8158
- created: z.string().default("2025-09-22T14:20:43.147Z"),
8159
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
8301
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
8302
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
8160
8303
  guardrail_config: z.union([
8161
8304
  z.lazy(() =>
8162
8305
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
@@ -8204,8 +8347,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
8204
8347
  > = z.object({
8205
8348
  id: z.string(),
8206
8349
  description: z.string(),
8207
- created: z.string().default("2025-09-22T14:20:43.147Z"),
8208
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
8350
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
8351
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
8209
8352
  guardrailConfig: z.union([
8210
8353
  z.lazy(() =>
8211
8354
  CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
@@ -8582,8 +8725,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
8582
8725
  > = z.object({
8583
8726
  _id: z.string(),
8584
8727
  description: z.string(),
8585
- created: z.string().default("2025-09-22T14:20:43.147Z"),
8586
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
8728
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
8729
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
8587
8730
  guardrail_config: z.union([
8588
8731
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
8589
8732
  z.lazy(() =>
@@ -8623,8 +8766,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
8623
8766
  > = z.object({
8624
8767
  id: z.string(),
8625
8768
  description: z.string(),
8626
- created: z.string().default("2025-09-22T14:20:43.147Z"),
8627
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
8769
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
8770
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
8628
8771
  guardrailConfig: z.union([
8629
8772
  z.lazy(() =>
8630
8773
  CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
@@ -8979,8 +9122,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
8979
9122
  > = z.object({
8980
9123
  _id: z.string(),
8981
9124
  description: z.string(),
8982
- created: z.string().default("2025-09-22T14:20:43.147Z"),
8983
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
9125
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
9126
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
8984
9127
  guardrail_config: z.union([
8985
9128
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
8986
9129
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -9020,8 +9163,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
9020
9163
  > = z.object({
9021
9164
  id: z.string(),
9022
9165
  description: z.string(),
9023
- created: z.string().default("2025-09-22T14:20:43.147Z"),
9024
- updated: z.string().default("2025-09-22T14:20:43.148Z"),
9166
+ created: z.string().default("2025-09-25T06:48:41.758Z"),
9167
+ updated: z.string().default("2025-09-25T06:48:41.758Z"),
9025
9168
  guardrailConfig: z.union([
9026
9169
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
9027
9170
  z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),