@orq-ai/node 4.0.0-rc.52 → 4.0.0-rc.53

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 (117) hide show
  1. package/bin/mcp-server.js +5274 -1578
  2. package/bin/mcp-server.js.map +44 -44
  3. package/docs/sdks/agents/README.md +40 -2
  4. package/examples/package-lock.json +1 -1
  5. package/funcs/agentsStream.js +2 -0
  6. package/funcs/agentsStream.js.map +1 -1
  7. package/funcs/agentsStreamRun.js +2 -0
  8. package/funcs/agentsStreamRun.js.map +1 -1
  9. package/jsr.json +1 -1
  10. package/lib/config.d.ts +2 -2
  11. package/lib/config.js +2 -2
  12. package/mcp-server/mcp-server.js +1 -1
  13. package/mcp-server/server.js +1 -1
  14. package/models/operations/createagent.d.ts +17 -7
  15. package/models/operations/createagent.d.ts.map +1 -1
  16. package/models/operations/createagent.js +12 -4
  17. package/models/operations/createagent.js.map +1 -1
  18. package/models/operations/createbudget.js +2 -2
  19. package/models/operations/createcontact.js +2 -2
  20. package/models/operations/createdataset.js +2 -2
  21. package/models/operations/createdatasetitem.js +8 -8
  22. package/models/operations/createdatasource.js +2 -2
  23. package/models/operations/createeval.d.ts +70 -70
  24. package/models/operations/createeval.d.ts.map +1 -1
  25. package/models/operations/createeval.js +162 -169
  26. package/models/operations/createeval.js.map +1 -1
  27. package/models/operations/createtool.js +12 -12
  28. package/models/operations/fileget.js +2 -2
  29. package/models/operations/filelist.js +2 -2
  30. package/models/operations/fileupload.js +2 -2
  31. package/models/operations/getagent.d.ts +5 -0
  32. package/models/operations/getagent.d.ts.map +1 -1
  33. package/models/operations/getagent.js +4 -0
  34. package/models/operations/getagent.js.map +1 -1
  35. package/models/operations/getalltools.d.ts +34 -34
  36. package/models/operations/getalltools.d.ts.map +1 -1
  37. package/models/operations/getalltools.js +74 -79
  38. package/models/operations/getalltools.js.map +1 -1
  39. package/models/operations/getbudget.js +2 -2
  40. package/models/operations/getevals.js +28 -28
  41. package/models/operations/listagents.d.ts +5 -0
  42. package/models/operations/listagents.d.ts.map +1 -1
  43. package/models/operations/listagents.js +4 -0
  44. package/models/operations/listagents.js.map +1 -1
  45. package/models/operations/listbudgets.js +2 -2
  46. package/models/operations/listcontacts.js +2 -2
  47. package/models/operations/listdatasetdatapoints.js +8 -8
  48. package/models/operations/listdatasets.js +2 -2
  49. package/models/operations/listdatasources.js +2 -2
  50. package/models/operations/retrievecontact.js +2 -2
  51. package/models/operations/retrievedatapoint.js +8 -8
  52. package/models/operations/retrievedataset.js +2 -2
  53. package/models/operations/retrievedatasource.js +2 -2
  54. package/models/operations/retrievetool.js +12 -12
  55. package/models/operations/runagent.js +2 -2
  56. package/models/operations/streamagent.d.ts +2658 -106
  57. package/models/operations/streamagent.d.ts.map +1 -1
  58. package/models/operations/streamagent.js +2936 -5
  59. package/models/operations/streamagent.js.map +1 -1
  60. package/models/operations/streamrunagent.d.ts +3268 -716
  61. package/models/operations/streamrunagent.d.ts.map +1 -1
  62. package/models/operations/streamrunagent.js +2936 -12
  63. package/models/operations/streamrunagent.js.map +1 -1
  64. package/models/operations/updateagent.d.ts +17 -7
  65. package/models/operations/updateagent.d.ts.map +1 -1
  66. package/models/operations/updateagent.js +12 -4
  67. package/models/operations/updateagent.js.map +1 -1
  68. package/models/operations/updatebudget.js +2 -2
  69. package/models/operations/updatecontact.js +2 -2
  70. package/models/operations/updatedatapoint.js +8 -8
  71. package/models/operations/updatedataset.js +2 -2
  72. package/models/operations/updatedatasource.js +2 -2
  73. package/models/operations/updateeval.js +28 -28
  74. package/models/operations/updatetool.js +14 -14
  75. package/package.json +1 -1
  76. package/src/funcs/agentsStream.ts +1 -0
  77. package/src/funcs/agentsStreamRun.ts +1 -0
  78. package/src/lib/config.ts +2 -2
  79. package/src/mcp-server/mcp-server.ts +1 -1
  80. package/src/mcp-server/server.ts +1 -1
  81. package/src/models/operations/createagent.ts +31 -13
  82. package/src/models/operations/createbudget.ts +2 -2
  83. package/src/models/operations/createcontact.ts +2 -2
  84. package/src/models/operations/createdataset.ts +2 -2
  85. package/src/models/operations/createdatasetitem.ts +8 -8
  86. package/src/models/operations/createdatasource.ts +2 -2
  87. package/src/models/operations/createeval.ts +368 -294
  88. package/src/models/operations/createtool.ts +12 -12
  89. package/src/models/operations/fileget.ts +2 -2
  90. package/src/models/operations/filelist.ts +2 -2
  91. package/src/models/operations/fileupload.ts +2 -2
  92. package/src/models/operations/getagent.ts +9 -0
  93. package/src/models/operations/getalltools.ts +277 -231
  94. package/src/models/operations/getbudget.ts +2 -2
  95. package/src/models/operations/getevals.ts +28 -28
  96. package/src/models/operations/listagents.ts +9 -0
  97. package/src/models/operations/listbudgets.ts +2 -2
  98. package/src/models/operations/listcontacts.ts +2 -2
  99. package/src/models/operations/listdatasetdatapoints.ts +8 -8
  100. package/src/models/operations/listdatasets.ts +2 -2
  101. package/src/models/operations/listdatasources.ts +2 -2
  102. package/src/models/operations/retrievecontact.ts +2 -2
  103. package/src/models/operations/retrievedatapoint.ts +8 -8
  104. package/src/models/operations/retrievedataset.ts +2 -2
  105. package/src/models/operations/retrievedatasource.ts +2 -2
  106. package/src/models/operations/retrievetool.ts +12 -12
  107. package/src/models/operations/runagent.ts +2 -2
  108. package/src/models/operations/streamagent.ts +7595 -380
  109. package/src/models/operations/streamrunagent.ts +10703 -3540
  110. package/src/models/operations/updateagent.ts +31 -13
  111. package/src/models/operations/updatebudget.ts +2 -2
  112. package/src/models/operations/updatecontact.ts +2 -2
  113. package/src/models/operations/updatedatapoint.ts +8 -8
  114. package/src/models/operations/updatedataset.ts +2 -2
  115. package/src/models/operations/updatedatasource.ts +2 -2
  116. package/src/models/operations/updateeval.ts +28 -28
  117. package/src/models/operations/updatetool.ts +14 -14
@@ -41,8 +41,8 @@ exports.CreateEvalRequestBodyEvalsOutputType$outboundSchema = exports.CreateEval
41
41
  exports.CreateEvalGuardrailConfigType$outboundSchema = exports.CreateEvalGuardrailConfigType$inboundSchema = exports.NumberT$outboundSchema = exports.NumberT$inboundSchema = exports.Operator$outboundSchema = exports.Operator$inboundSchema = exports.GuardrailConfigType$outboundSchema = exports.GuardrailConfigType$inboundSchema = exports.Json$outboundSchema = exports.Json$inboundSchema = exports.RequestBodyType$outboundSchema = exports.RequestBodyType$inboundSchema = exports.RequestBodyOutputType$outboundSchema = exports.RequestBodyOutputType$inboundSchema = exports.RequestBodyGuardrailConfig$outboundSchema = exports.RequestBodyGuardrailConfig$inboundSchema = exports.GuardrailConfigBoolean$outboundSchema = exports.GuardrailConfigBoolean$inboundSchema = exports.CreateEvalGuardrailConfigEvalsType$outboundSchema = exports.CreateEvalGuardrailConfigEvalsType$inboundSchema = exports.GuardrailConfigNumber$outboundSchema = exports.GuardrailConfigNumber$inboundSchema = exports.GuardrailConfigOperator$outboundSchema = exports.GuardrailConfigOperator$inboundSchema = exports.CreateEvalGuardrailConfigEvalsRequestType$outboundSchema = exports.CreateEvalGuardrailConfigEvalsRequestType$inboundSchema = exports.CreateEvalRequestBodyHTTP$outboundSchema = exports.CreateEvalRequestBodyHTTP$inboundSchema = exports.CreateEvalRequestBodyMethod$outboundSchema = exports.CreateEvalRequestBodyMethod$inboundSchema = exports.CreateEvalRequestBodyType$outboundSchema = exports.CreateEvalRequestBodyType$inboundSchema = exports.CreateEvalRequestBodyOutputType$outboundSchema = exports.CreateEvalRequestBodyOutputType$inboundSchema = exports.CreateEvalRequestBodyGuardrailConfig$outboundSchema = exports.CreateEvalRequestBodyGuardrailConfig$inboundSchema = exports.CreateEvalGuardrailConfigBoolean$outboundSchema = exports.CreateEvalGuardrailConfigBoolean$inboundSchema = exports.CreateEvalGuardrailConfigEvalsRequestRequestBodyType$outboundSchema = exports.CreateEvalGuardrailConfigEvalsRequestRequestBodyType$inboundSchema = exports.CreateEvalGuardrailConfigNumber$outboundSchema = exports.CreateEvalGuardrailConfigNumber$inboundSchema = exports.CreateEvalGuardrailConfigOperator$outboundSchema = exports.CreateEvalGuardrailConfigOperator$inboundSchema = exports.CreateEvalGuardrailConfigEvalsRequestRequestBody3Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsRequestRequestBody3Type$inboundSchema = exports.Python$outboundSchema = exports.Python$inboundSchema = exports.CreateEvalRequestBodyEvalsType$outboundSchema = exports.CreateEvalRequestBodyEvalsType$inboundSchema = void 0;
42
42
  exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Operator$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Operator$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody52Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody52Type$inboundSchema = exports.Ragas$outboundSchema = exports.Ragas$inboundSchema = exports.RagasMetric$outboundSchema = exports.RagasMetric$inboundSchema = exports.CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$outboundSchema = exports.CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$inboundSchema = exports.CreateEvalResponseBodyEvalsResponse200ApplicationJSONGuardrailConfig$outboundSchema = exports.CreateEvalResponseBodyEvalsResponse200ApplicationJSONGuardrailConfig$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Type$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Operator$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Operator$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody62Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody62Type$inboundSchema = exports.Typescript$outboundSchema = exports.Typescript$inboundSchema = exports.CreateEvalResponseBodyEvalsResponse200ApplicationJson7Type$outboundSchema = exports.CreateEvalResponseBodyEvalsResponse200ApplicationJson7Type$inboundSchema = exports.CreateEvalResponseBodyEvalsResponse200ApplicationJson7GuardrailConfig$outboundSchema = exports.CreateEvalResponseBodyEvalsResponse200ApplicationJson7GuardrailConfig$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Type$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Operator$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Operator$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody72Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody72Type$inboundSchema = exports.CreateEvalRequestBody$outboundSchema = exports.CreateEvalRequestBody$inboundSchema = exports.Llm$outboundSchema = exports.Llm$inboundSchema = exports.CreateEvalRequestBodyEvalsRequestType$outboundSchema = exports.CreateEvalRequestBodyEvalsRequestType$inboundSchema = exports.OutputType$outboundSchema = exports.OutputType$inboundSchema = exports.GuardrailConfig$outboundSchema = exports.GuardrailConfig$inboundSchema = exports.Boolean$outboundSchema = exports.Boolean$inboundSchema = void 0;
43
43
  exports.TwentySix$outboundSchema = exports.TwentySix$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody526Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody526Type$inboundSchema = exports.TwentySeven$outboundSchema = exports.TwentySeven$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody527Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody527Type$inboundSchema = exports.TwentyEight$outboundSchema = exports.TwentyEight$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody528Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody528Type$inboundSchema = exports.TwentyNine$outboundSchema = exports.TwentyNine$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody529Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody529Type$inboundSchema = exports.Thirty$outboundSchema = exports.Thirty$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody530Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody530Type$inboundSchema = exports.ThirtyOne$outboundSchema = exports.ThirtyOne$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody531Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody531Type$inboundSchema = exports.ThirtyTwo$outboundSchema = exports.ThirtyTwo$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody532Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody532Type$inboundSchema = exports.ThirtyThree$outboundSchema = exports.ThirtyThree$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type$inboundSchema = exports.ThirtyFour$outboundSchema = exports.ThirtyFour$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type$inboundSchema = exports.ThirtyFive$outboundSchema = exports.ThirtyFive$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type$inboundSchema = exports.CreateEvalResponseBodyEvalsResponse200Type$outboundSchema = exports.CreateEvalResponseBodyEvalsResponse200Type$inboundSchema = exports.CreateEvalResponseBodyEvalsResponse200GuardrailConfig$outboundSchema = exports.CreateEvalResponseBodyEvalsResponse200GuardrailConfig$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Type$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema = void 0;
44
- exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$inboundSchema = exports.Fourteen$outboundSchema = exports.Fourteen$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$inboundSchema = exports.Fifteen$outboundSchema = exports.Fifteen$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$inboundSchema = exports.Sixteen$outboundSchema = exports.Sixteen$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$inboundSchema = exports.Seventeen$outboundSchema = exports.Seventeen$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$inboundSchema = exports.Eighteen$outboundSchema = exports.Eighteen$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody518Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody518Type$inboundSchema = exports.Nineteen$outboundSchema = exports.Nineteen$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody519Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody519Type$inboundSchema = exports.Twenty$outboundSchema = exports.Twenty$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody520Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody520Type$inboundSchema = exports.TwentyOne$outboundSchema = exports.TwentyOne$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody521Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody521Type$inboundSchema = exports.TwentyTwo$outboundSchema = exports.TwentyTwo$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody522Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody522Type$inboundSchema = exports.TwentyThree$outboundSchema = exports.TwentyThree$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody523Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody523Type$inboundSchema = exports.TwentyFour$outboundSchema = exports.TwentyFour$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody524Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody524Type$inboundSchema = exports.TwentyFive$outboundSchema = exports.TwentyFive$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody525Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody525Type$inboundSchema = void 0;
45
- exports.CreateEvalFunctionParams1$outboundSchema = exports.CreateEvalFunctionParams1$inboundSchema = exports.FunctionParamsType$outboundSchema = exports.FunctionParamsType$inboundSchema = exports.CreateEvalFunctionParams2$outboundSchema = exports.CreateEvalFunctionParams2$inboundSchema = exports.CreateEvalFunctionParamsType$outboundSchema = exports.CreateEvalFunctionParamsType$inboundSchema = exports.CreateEvalFunctionParams3$outboundSchema = exports.CreateEvalFunctionParams3$inboundSchema = exports.CreateEvalFunctionParamsEvalsType$outboundSchema = exports.CreateEvalFunctionParamsEvalsType$inboundSchema = exports.CreateEvalFunctionParams4$outboundSchema = exports.CreateEvalFunctionParams4$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponseType$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponseType$inboundSchema = exports.CreateEvalFunctionParams5$outboundSchema = exports.CreateEvalFunctionParams5$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200Type$inboundSchema = exports.CreateEvalFunctionParams6$outboundSchema = exports.CreateEvalFunctionParams6$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONType$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONType$inboundSchema = exports.Seven$outboundSchema = exports.Seven$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema = exports.Eight$outboundSchema = exports.Eight$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$inboundSchema = exports.Nine$outboundSchema = exports.Nine$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$inboundSchema = exports.Ten$outboundSchema = exports.Ten$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$inboundSchema = exports.Eleven$outboundSchema = exports.Eleven$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$inboundSchema = exports.Twelve$outboundSchema = exports.Twelve$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$inboundSchema = exports.Thirteen$outboundSchema = exports.Thirteen$inboundSchema = void 0;
44
+ exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$inboundSchema = exports.CreateEvalFunctionParams14$outboundSchema = exports.CreateEvalFunctionParams14$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$inboundSchema = exports.CreateEvalFunctionParams15$outboundSchema = exports.CreateEvalFunctionParams15$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$inboundSchema = exports.CreateEvalFunctionParams16$outboundSchema = exports.CreateEvalFunctionParams16$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$inboundSchema = exports.CreateEvalFunctionParams17$outboundSchema = exports.CreateEvalFunctionParams17$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$inboundSchema = exports.Eighteen$outboundSchema = exports.Eighteen$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody518Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody518Type$inboundSchema = exports.Nineteen$outboundSchema = exports.Nineteen$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody519Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody519Type$inboundSchema = exports.Twenty$outboundSchema = exports.Twenty$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody520Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody520Type$inboundSchema = exports.TwentyOne$outboundSchema = exports.TwentyOne$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody521Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody521Type$inboundSchema = exports.TwentyTwo$outboundSchema = exports.TwentyTwo$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody522Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody522Type$inboundSchema = exports.TwentyThree$outboundSchema = exports.TwentyThree$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody523Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody523Type$inboundSchema = exports.TwentyFour$outboundSchema = exports.TwentyFour$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody524Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody524Type$inboundSchema = exports.TwentyFive$outboundSchema = exports.TwentyFive$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody525Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody525Type$inboundSchema = void 0;
45
+ exports.CreateEvalFunctionParams1$outboundSchema = exports.CreateEvalFunctionParams1$inboundSchema = exports.FunctionParamsType$outboundSchema = exports.FunctionParamsType$inboundSchema = exports.CreateEvalFunctionParams2$outboundSchema = exports.CreateEvalFunctionParams2$inboundSchema = exports.CreateEvalFunctionParamsType$outboundSchema = exports.CreateEvalFunctionParamsType$inboundSchema = exports.CreateEvalFunctionParams3$outboundSchema = exports.CreateEvalFunctionParams3$inboundSchema = exports.CreateEvalFunctionParamsEvalsType$outboundSchema = exports.CreateEvalFunctionParamsEvalsType$inboundSchema = exports.CreateEvalFunctionParams4$outboundSchema = exports.CreateEvalFunctionParams4$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponseType$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponseType$inboundSchema = exports.CreateEvalFunctionParams5$outboundSchema = exports.CreateEvalFunctionParams5$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200Type$inboundSchema = exports.CreateEvalFunctionParams6$outboundSchema = exports.CreateEvalFunctionParams6$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONType$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONType$inboundSchema = exports.CreateEvalFunctionParams7$outboundSchema = exports.CreateEvalFunctionParams7$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema = exports.CreateEvalFunctionParams8$outboundSchema = exports.CreateEvalFunctionParams8$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$inboundSchema = exports.CreateEvalFunctionParams9$outboundSchema = exports.CreateEvalFunctionParams9$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$inboundSchema = exports.CreateEvalFunctionParams10$outboundSchema = exports.CreateEvalFunctionParams10$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$inboundSchema = exports.CreateEvalFunctionParams11$outboundSchema = exports.CreateEvalFunctionParams11$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$inboundSchema = exports.CreateEvalFunctionParams12$outboundSchema = exports.CreateEvalFunctionParams12$inboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$inboundSchema = exports.CreateEvalFunctionParams13$outboundSchema = exports.CreateEvalFunctionParams13$inboundSchema = void 0;
46
46
  exports.CreateEvalResponseBodyGuardrailConfig$outboundSchema = exports.CreateEvalResponseBodyGuardrailConfig$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200Operator$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200Operator$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema = exports.ResponseBodyHTTP$outboundSchema = exports.ResponseBodyHTTP$inboundSchema = exports.ResponseBodyMethod$outboundSchema = exports.ResponseBodyMethod$inboundSchema = exports.CreateEvalResponseBodyEvalsType$outboundSchema = exports.CreateEvalResponseBodyEvalsType$inboundSchema = exports.CreateEvalResponseBodyEvalsGuardrailConfig$outboundSchema = exports.CreateEvalResponseBodyEvalsGuardrailConfig$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$inboundSchema = exports.ResponseBodyPython$outboundSchema = exports.ResponseBodyPython$inboundSchema = exports.CreateEvalResponseBodyEvalsResponseType$outboundSchema = exports.CreateEvalResponseBodyEvalsResponseType$inboundSchema = exports.CreateEvalResponseBodyEvalsResponseGuardrailConfig$outboundSchema = exports.CreateEvalResponseBodyEvalsResponseGuardrailConfig$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$inboundSchema = exports.CreateEvalResponseBodyFunction$outboundSchema = exports.CreateEvalResponseBodyFunction$inboundSchema = exports.FunctionParams$outboundSchema = exports.FunctionParams$inboundSchema = void 0;
47
47
  exports.CreateEvalResponseBody$outboundSchema = exports.CreateEvalResponseBody$inboundSchema = exports.ResponseBodyLLM$outboundSchema = exports.ResponseBodyLLM$inboundSchema = exports.ResponseBodyType$outboundSchema = exports.ResponseBodyType$inboundSchema = exports.ResponseBodyGuardrailConfig$outboundSchema = exports.ResponseBodyGuardrailConfig$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponseType$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponseType$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponseOperator$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponseOperator$inboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200Type$outboundSchema = exports.CreateEvalGuardrailConfigEvalsResponse200Type$inboundSchema = exports.ResponseBodyJSON$outboundSchema = exports.ResponseBodyJSON$inboundSchema = exports.CreateEvalResponseBodyType$outboundSchema = exports.CreateEvalResponseBodyType$inboundSchema = void 0;
48
48
  exports.createEvalGuardrailConfigEvalsNumberToJSON = createEvalGuardrailConfigEvalsNumberToJSON;
@@ -137,28 +137,28 @@ exports.nineteenToJSON = nineteenToJSON;
137
137
  exports.nineteenFromJSON = nineteenFromJSON;
138
138
  exports.eighteenToJSON = eighteenToJSON;
139
139
  exports.eighteenFromJSON = eighteenFromJSON;
140
- exports.seventeenToJSON = seventeenToJSON;
141
- exports.seventeenFromJSON = seventeenFromJSON;
142
- exports.sixteenToJSON = sixteenToJSON;
143
- exports.sixteenFromJSON = sixteenFromJSON;
144
- exports.fifteenToJSON = fifteenToJSON;
145
- exports.fifteenFromJSON = fifteenFromJSON;
146
- exports.fourteenToJSON = fourteenToJSON;
147
- exports.fourteenFromJSON = fourteenFromJSON;
148
- exports.thirteenToJSON = thirteenToJSON;
149
- exports.thirteenFromJSON = thirteenFromJSON;
150
- exports.twelveToJSON = twelveToJSON;
151
- exports.twelveFromJSON = twelveFromJSON;
152
- exports.elevenToJSON = elevenToJSON;
153
- exports.elevenFromJSON = elevenFromJSON;
154
- exports.tenToJSON = tenToJSON;
155
- exports.tenFromJSON = tenFromJSON;
156
- exports.nineToJSON = nineToJSON;
157
- exports.nineFromJSON = nineFromJSON;
158
- exports.eightToJSON = eightToJSON;
159
- exports.eightFromJSON = eightFromJSON;
160
- exports.sevenToJSON = sevenToJSON;
161
- exports.sevenFromJSON = sevenFromJSON;
140
+ exports.createEvalFunctionParams17ToJSON = createEvalFunctionParams17ToJSON;
141
+ exports.createEvalFunctionParams17FromJSON = createEvalFunctionParams17FromJSON;
142
+ exports.createEvalFunctionParams16ToJSON = createEvalFunctionParams16ToJSON;
143
+ exports.createEvalFunctionParams16FromJSON = createEvalFunctionParams16FromJSON;
144
+ exports.createEvalFunctionParams15ToJSON = createEvalFunctionParams15ToJSON;
145
+ exports.createEvalFunctionParams15FromJSON = createEvalFunctionParams15FromJSON;
146
+ exports.createEvalFunctionParams14ToJSON = createEvalFunctionParams14ToJSON;
147
+ exports.createEvalFunctionParams14FromJSON = createEvalFunctionParams14FromJSON;
148
+ exports.createEvalFunctionParams13ToJSON = createEvalFunctionParams13ToJSON;
149
+ exports.createEvalFunctionParams13FromJSON = createEvalFunctionParams13FromJSON;
150
+ exports.createEvalFunctionParams12ToJSON = createEvalFunctionParams12ToJSON;
151
+ exports.createEvalFunctionParams12FromJSON = createEvalFunctionParams12FromJSON;
152
+ exports.createEvalFunctionParams11ToJSON = createEvalFunctionParams11ToJSON;
153
+ exports.createEvalFunctionParams11FromJSON = createEvalFunctionParams11FromJSON;
154
+ exports.createEvalFunctionParams10ToJSON = createEvalFunctionParams10ToJSON;
155
+ exports.createEvalFunctionParams10FromJSON = createEvalFunctionParams10FromJSON;
156
+ exports.createEvalFunctionParams9ToJSON = createEvalFunctionParams9ToJSON;
157
+ exports.createEvalFunctionParams9FromJSON = createEvalFunctionParams9FromJSON;
158
+ exports.createEvalFunctionParams8ToJSON = createEvalFunctionParams8ToJSON;
159
+ exports.createEvalFunctionParams8FromJSON = createEvalFunctionParams8FromJSON;
160
+ exports.createEvalFunctionParams7ToJSON = createEvalFunctionParams7ToJSON;
161
+ exports.createEvalFunctionParams7FromJSON = createEvalFunctionParams7FromJSON;
162
162
  exports.createEvalFunctionParams6ToJSON = createEvalFunctionParams6ToJSON;
163
163
  exports.createEvalFunctionParams6FromJSON = createEvalFunctionParams6FromJSON;
164
164
  exports.createEvalFunctionParams5ToJSON = createEvalFunctionParams5ToJSON;
@@ -1134,8 +1134,8 @@ exports.CreateEvalResponseBodyEvalsResponse200ApplicationJson7Type$outboundSchem
1134
1134
  exports.Typescript$inboundSchema = z.object({
1135
1135
  _id: z.string(),
1136
1136
  description: z.string(),
1137
- created: z.string().default("2025-11-20T07:47:06.974Z"),
1138
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
1137
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
1138
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
1139
1139
  guardrail_config: z.union([
1140
1140
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
1141
1141
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
@@ -1153,8 +1153,8 @@ exports.Typescript$inboundSchema = z.object({
1153
1153
  exports.Typescript$outboundSchema = z.object({
1154
1154
  id: z.string(),
1155
1155
  description: z.string(),
1156
- created: z.string().default("2025-11-20T07:47:06.974Z"),
1157
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
1156
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
1157
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
1158
1158
  guardrailConfig: z.union([
1159
1159
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
1160
1160
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
@@ -1260,8 +1260,8 @@ exports.Ragas$inboundSchema = z
1260
1260
  .object({
1261
1261
  _id: z.string(),
1262
1262
  description: z.string(),
1263
- created: z.string().default("2025-11-20T07:47:06.974Z"),
1264
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
1263
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
1264
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
1265
1265
  guardrail_config: z.union([
1266
1266
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
1267
1267
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
@@ -1281,8 +1281,8 @@ exports.Ragas$inboundSchema = z
1281
1281
  exports.Ragas$outboundSchema = z.object({
1282
1282
  id: z.string(),
1283
1283
  description: z.string(),
1284
- created: z.string().default("2025-11-20T07:47:06.974Z"),
1285
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
1284
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
1285
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
1286
1286
  guardrailConfig: z.union([
1287
1287
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
1288
1288
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
@@ -1714,219 +1714,212 @@ exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Ty
1714
1714
  /** @internal */
1715
1715
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$inboundSchema;
1716
1716
  /** @internal */
1717
- exports.Seventeen$inboundSchema = z.object({
1717
+ exports.CreateEvalFunctionParams17$inboundSchema = z.object({
1718
1718
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$inboundSchema,
1719
1719
  });
1720
1720
  /** @internal */
1721
- exports.Seventeen$outboundSchema = z.object({
1721
+ exports.CreateEvalFunctionParams17$outboundSchema = z.object({
1722
1722
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody517Type$outboundSchema,
1723
1723
  });
1724
- function seventeenToJSON(seventeen) {
1725
- return JSON.stringify(exports.Seventeen$outboundSchema.parse(seventeen));
1724
+ function createEvalFunctionParams17ToJSON(createEvalFunctionParams17) {
1725
+ return JSON.stringify(exports.CreateEvalFunctionParams17$outboundSchema.parse(createEvalFunctionParams17));
1726
1726
  }
1727
- function seventeenFromJSON(jsonString) {
1728
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Seventeen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Seventeen' from JSON`);
1727
+ function createEvalFunctionParams17FromJSON(jsonString) {
1728
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams17$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams17' from JSON`);
1729
1729
  }
1730
1730
  /** @internal */
1731
1731
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type);
1732
1732
  /** @internal */
1733
1733
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$inboundSchema;
1734
1734
  /** @internal */
1735
- exports.Sixteen$inboundSchema = z.object({
1735
+ exports.CreateEvalFunctionParams16$inboundSchema = z.object({
1736
1736
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$inboundSchema,
1737
1737
  });
1738
1738
  /** @internal */
1739
- exports.Sixteen$outboundSchema = z.object({
1739
+ exports.CreateEvalFunctionParams16$outboundSchema = z.object({
1740
1740
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody516Type$outboundSchema,
1741
1741
  });
1742
- function sixteenToJSON(sixteen) {
1743
- return JSON.stringify(exports.Sixteen$outboundSchema.parse(sixteen));
1742
+ function createEvalFunctionParams16ToJSON(createEvalFunctionParams16) {
1743
+ return JSON.stringify(exports.CreateEvalFunctionParams16$outboundSchema.parse(createEvalFunctionParams16));
1744
1744
  }
1745
- function sixteenFromJSON(jsonString) {
1746
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Sixteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Sixteen' from JSON`);
1745
+ function createEvalFunctionParams16FromJSON(jsonString) {
1746
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams16$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams16' from JSON`);
1747
1747
  }
1748
1748
  /** @internal */
1749
1749
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type);
1750
1750
  /** @internal */
1751
1751
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$inboundSchema;
1752
1752
  /** @internal */
1753
- exports.Fifteen$inboundSchema = z.object({
1753
+ exports.CreateEvalFunctionParams15$inboundSchema = z.object({
1754
1754
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$inboundSchema,
1755
1755
  pattern: z.string(),
1756
1756
  });
1757
1757
  /** @internal */
1758
- exports.Fifteen$outboundSchema = z.object({
1758
+ exports.CreateEvalFunctionParams15$outboundSchema = z.object({
1759
1759
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody515Type$outboundSchema,
1760
1760
  pattern: z.string(),
1761
1761
  });
1762
- function fifteenToJSON(fifteen) {
1763
- return JSON.stringify(exports.Fifteen$outboundSchema.parse(fifteen));
1762
+ function createEvalFunctionParams15ToJSON(createEvalFunctionParams15) {
1763
+ return JSON.stringify(exports.CreateEvalFunctionParams15$outboundSchema.parse(createEvalFunctionParams15));
1764
1764
  }
1765
- function fifteenFromJSON(jsonString) {
1766
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Fifteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Fifteen' from JSON`);
1765
+ function createEvalFunctionParams15FromJSON(jsonString) {
1766
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams15$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams15' from JSON`);
1767
1767
  }
1768
1768
  /** @internal */
1769
1769
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type);
1770
1770
  /** @internal */
1771
1771
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$inboundSchema;
1772
1772
  /** @internal */
1773
- exports.Fourteen$inboundSchema = z.object({
1773
+ exports.CreateEvalFunctionParams14$inboundSchema = z.object({
1774
1774
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$inboundSchema,
1775
1775
  });
1776
1776
  /** @internal */
1777
- exports.Fourteen$outboundSchema = z.object({
1777
+ exports.CreateEvalFunctionParams14$outboundSchema = z.object({
1778
1778
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody514Type$outboundSchema,
1779
1779
  });
1780
- function fourteenToJSON(fourteen) {
1781
- return JSON.stringify(exports.Fourteen$outboundSchema.parse(fourteen));
1780
+ function createEvalFunctionParams14ToJSON(createEvalFunctionParams14) {
1781
+ return JSON.stringify(exports.CreateEvalFunctionParams14$outboundSchema.parse(createEvalFunctionParams14));
1782
1782
  }
1783
- function fourteenFromJSON(jsonString) {
1784
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Fourteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Fourteen' from JSON`);
1783
+ function createEvalFunctionParams14FromJSON(jsonString) {
1784
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams14$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams14' from JSON`);
1785
1785
  }
1786
1786
  /** @internal */
1787
1787
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type);
1788
1788
  /** @internal */
1789
1789
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$inboundSchema;
1790
1790
  /** @internal */
1791
- exports.Thirteen$inboundSchema = z.object({
1791
+ exports.CreateEvalFunctionParams13$inboundSchema = z.object({
1792
1792
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$inboundSchema,
1793
1793
  value: z.number(),
1794
1794
  });
1795
1795
  /** @internal */
1796
- exports.Thirteen$outboundSchema = z.object({
1796
+ exports.CreateEvalFunctionParams13$outboundSchema = z.object({
1797
1797
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody513Type$outboundSchema,
1798
1798
  value: z.number(),
1799
1799
  });
1800
- function thirteenToJSON(thirteen) {
1801
- return JSON.stringify(exports.Thirteen$outboundSchema.parse(thirteen));
1800
+ function createEvalFunctionParams13ToJSON(createEvalFunctionParams13) {
1801
+ return JSON.stringify(exports.CreateEvalFunctionParams13$outboundSchema.parse(createEvalFunctionParams13));
1802
1802
  }
1803
- function thirteenFromJSON(jsonString) {
1804
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Thirteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Thirteen' from JSON`);
1803
+ function createEvalFunctionParams13FromJSON(jsonString) {
1804
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams13$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams13' from JSON`);
1805
1805
  }
1806
1806
  /** @internal */
1807
1807
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type);
1808
1808
  /** @internal */
1809
1809
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$inboundSchema;
1810
1810
  /** @internal */
1811
- exports.Twelve$inboundSchema = z
1812
- .object({
1811
+ exports.CreateEvalFunctionParams12$inboundSchema = z.object({
1813
1812
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$inboundSchema,
1814
1813
  min: z.number(),
1815
1814
  max: z.number(),
1816
1815
  });
1817
1816
  /** @internal */
1818
- exports.Twelve$outboundSchema = z.object({
1817
+ exports.CreateEvalFunctionParams12$outboundSchema = z.object({
1819
1818
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody512Type$outboundSchema,
1820
1819
  min: z.number(),
1821
1820
  max: z.number(),
1822
1821
  });
1823
- function twelveToJSON(twelve) {
1824
- return JSON.stringify(exports.Twelve$outboundSchema.parse(twelve));
1822
+ function createEvalFunctionParams12ToJSON(createEvalFunctionParams12) {
1823
+ return JSON.stringify(exports.CreateEvalFunctionParams12$outboundSchema.parse(createEvalFunctionParams12));
1825
1824
  }
1826
- function twelveFromJSON(jsonString) {
1827
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Twelve$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Twelve' from JSON`);
1825
+ function createEvalFunctionParams12FromJSON(jsonString) {
1826
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams12$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams12' from JSON`);
1828
1827
  }
1829
1828
  /** @internal */
1830
1829
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type);
1831
1830
  /** @internal */
1832
1831
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$inboundSchema;
1833
1832
  /** @internal */
1834
- exports.Eleven$inboundSchema = z
1835
- .object({
1833
+ exports.CreateEvalFunctionParams11$inboundSchema = z.object({
1836
1834
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$inboundSchema,
1837
1835
  value: z.number(),
1838
1836
  });
1839
1837
  /** @internal */
1840
- exports.Eleven$outboundSchema = z.object({
1838
+ exports.CreateEvalFunctionParams11$outboundSchema = z.object({
1841
1839
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody511Type$outboundSchema,
1842
1840
  value: z.number(),
1843
1841
  });
1844
- function elevenToJSON(eleven) {
1845
- return JSON.stringify(exports.Eleven$outboundSchema.parse(eleven));
1842
+ function createEvalFunctionParams11ToJSON(createEvalFunctionParams11) {
1843
+ return JSON.stringify(exports.CreateEvalFunctionParams11$outboundSchema.parse(createEvalFunctionParams11));
1846
1844
  }
1847
- function elevenFromJSON(jsonString) {
1848
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Eleven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Eleven' from JSON`);
1845
+ function createEvalFunctionParams11FromJSON(jsonString) {
1846
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams11$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams11' from JSON`);
1849
1847
  }
1850
1848
  /** @internal */
1851
1849
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type);
1852
1850
  /** @internal */
1853
1851
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$inboundSchema;
1854
1852
  /** @internal */
1855
- exports.Ten$inboundSchema = z
1856
- .object({
1853
+ exports.CreateEvalFunctionParams10$inboundSchema = z.object({
1857
1854
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$inboundSchema,
1858
1855
  });
1859
1856
  /** @internal */
1860
- exports.Ten$outboundSchema = z
1861
- .object({
1857
+ exports.CreateEvalFunctionParams10$outboundSchema = z.object({
1862
1858
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody510Type$outboundSchema,
1863
1859
  });
1864
- function tenToJSON(ten) {
1865
- return JSON.stringify(exports.Ten$outboundSchema.parse(ten));
1860
+ function createEvalFunctionParams10ToJSON(createEvalFunctionParams10) {
1861
+ return JSON.stringify(exports.CreateEvalFunctionParams10$outboundSchema.parse(createEvalFunctionParams10));
1866
1862
  }
1867
- function tenFromJSON(jsonString) {
1868
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Ten$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Ten' from JSON`);
1863
+ function createEvalFunctionParams10FromJSON(jsonString) {
1864
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams10$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams10' from JSON`);
1869
1865
  }
1870
1866
  /** @internal */
1871
1867
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type);
1872
1868
  /** @internal */
1873
1869
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$inboundSchema;
1874
1870
  /** @internal */
1875
- exports.Nine$inboundSchema = z
1876
- .object({
1871
+ exports.CreateEvalFunctionParams9$inboundSchema = z.object({
1877
1872
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$inboundSchema,
1878
1873
  value: z.string(),
1879
1874
  });
1880
1875
  /** @internal */
1881
- exports.Nine$outboundSchema = z.object({
1876
+ exports.CreateEvalFunctionParams9$outboundSchema = z.object({
1882
1877
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody59Type$outboundSchema,
1883
1878
  value: z.string(),
1884
1879
  });
1885
- function nineToJSON(nine) {
1886
- return JSON.stringify(exports.Nine$outboundSchema.parse(nine));
1880
+ function createEvalFunctionParams9ToJSON(createEvalFunctionParams9) {
1881
+ return JSON.stringify(exports.CreateEvalFunctionParams9$outboundSchema.parse(createEvalFunctionParams9));
1887
1882
  }
1888
- function nineFromJSON(jsonString) {
1889
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Nine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Nine' from JSON`);
1883
+ function createEvalFunctionParams9FromJSON(jsonString) {
1884
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams9$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams9' from JSON`);
1890
1885
  }
1891
1886
  /** @internal */
1892
1887
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type);
1893
1888
  /** @internal */
1894
1889
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$inboundSchema;
1895
1890
  /** @internal */
1896
- exports.Eight$inboundSchema = z
1897
- .object({
1891
+ exports.CreateEvalFunctionParams8$inboundSchema = z.object({
1898
1892
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$inboundSchema,
1899
1893
  value: z.string(),
1900
1894
  });
1901
1895
  /** @internal */
1902
- exports.Eight$outboundSchema = z.object({
1896
+ exports.CreateEvalFunctionParams8$outboundSchema = z.object({
1903
1897
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5Type$outboundSchema,
1904
1898
  value: z.string(),
1905
1899
  });
1906
- function eightToJSON(eight) {
1907
- return JSON.stringify(exports.Eight$outboundSchema.parse(eight));
1900
+ function createEvalFunctionParams8ToJSON(createEvalFunctionParams8) {
1901
+ return JSON.stringify(exports.CreateEvalFunctionParams8$outboundSchema.parse(createEvalFunctionParams8));
1908
1902
  }
1909
- function eightFromJSON(jsonString) {
1910
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Eight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Eight' from JSON`);
1903
+ function createEvalFunctionParams8FromJSON(jsonString) {
1904
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams8$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams8' from JSON`);
1911
1905
  }
1912
1906
  /** @internal */
1913
1907
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType);
1914
1908
  /** @internal */
1915
1909
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema = exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema;
1916
1910
  /** @internal */
1917
- exports.Seven$inboundSchema = z
1918
- .object({
1911
+ exports.CreateEvalFunctionParams7$inboundSchema = z.object({
1919
1912
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema,
1920
1913
  });
1921
1914
  /** @internal */
1922
- exports.Seven$outboundSchema = z.object({
1915
+ exports.CreateEvalFunctionParams7$outboundSchema = z.object({
1923
1916
  type: exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema,
1924
1917
  });
1925
- function sevenToJSON(seven) {
1926
- return JSON.stringify(exports.Seven$outboundSchema.parse(seven));
1918
+ function createEvalFunctionParams7ToJSON(createEvalFunctionParams7) {
1919
+ return JSON.stringify(exports.CreateEvalFunctionParams7$outboundSchema.parse(createEvalFunctionParams7));
1927
1920
  }
1928
- function sevenFromJSON(jsonString) {
1929
- return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.Seven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Seven' from JSON`);
1921
+ function createEvalFunctionParams7FromJSON(jsonString) {
1922
+ return (0, schemas_js_1.safeParse)(jsonString, (x) => exports.CreateEvalFunctionParams7$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateEvalFunctionParams7' from JSON`);
1930
1923
  }
1931
1924
  /** @internal */
1932
1925
  exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONType$inboundSchema = z.nativeEnum(exports.CreateEvalFunctionParamsEvalsResponse200ApplicationJSONType);
@@ -2048,25 +2041,25 @@ function createEvalFunctionParams1FromJSON(jsonString) {
2048
2041
  }
2049
2042
  /** @internal */
2050
2043
  exports.FunctionParams$inboundSchema = z.union([
2051
- z.lazy(() => exports.Twelve$inboundSchema),
2044
+ z.lazy(() => exports.CreateEvalFunctionParams12$inboundSchema),
2052
2045
  z.lazy(() => exports.CreateEvalFunctionParams1$inboundSchema),
2053
2046
  z.lazy(() => exports.CreateEvalFunctionParams2$inboundSchema),
2054
2047
  z.lazy(() => exports.CreateEvalFunctionParams3$inboundSchema),
2055
2048
  z.lazy(() => exports.CreateEvalFunctionParams4$inboundSchema),
2056
- z.lazy(() => exports.Eight$inboundSchema),
2057
- z.lazy(() => exports.Nine$inboundSchema),
2058
- z.lazy(() => exports.Eleven$inboundSchema),
2059
- z.lazy(() => exports.Thirteen$inboundSchema),
2060
- z.lazy(() => exports.Fifteen$inboundSchema),
2049
+ z.lazy(() => exports.CreateEvalFunctionParams8$inboundSchema),
2050
+ z.lazy(() => exports.CreateEvalFunctionParams9$inboundSchema),
2051
+ z.lazy(() => exports.CreateEvalFunctionParams11$inboundSchema),
2052
+ z.lazy(() => exports.CreateEvalFunctionParams13$inboundSchema),
2053
+ z.lazy(() => exports.CreateEvalFunctionParams15$inboundSchema),
2061
2054
  z.lazy(() => exports.TwentyFive$inboundSchema),
2062
2055
  z.lazy(() => exports.TwentySix$inboundSchema),
2063
2056
  z.lazy(() => exports.CreateEvalFunctionParams5$inboundSchema),
2064
2057
  z.lazy(() => exports.CreateEvalFunctionParams6$inboundSchema),
2065
- z.lazy(() => exports.Seven$inboundSchema),
2066
- z.lazy(() => exports.Ten$inboundSchema),
2067
- z.lazy(() => exports.Fourteen$inboundSchema),
2068
- z.lazy(() => exports.Sixteen$inboundSchema),
2069
- z.lazy(() => exports.Seventeen$inboundSchema),
2058
+ z.lazy(() => exports.CreateEvalFunctionParams7$inboundSchema),
2059
+ z.lazy(() => exports.CreateEvalFunctionParams10$inboundSchema),
2060
+ z.lazy(() => exports.CreateEvalFunctionParams14$inboundSchema),
2061
+ z.lazy(() => exports.CreateEvalFunctionParams16$inboundSchema),
2062
+ z.lazy(() => exports.CreateEvalFunctionParams17$inboundSchema),
2070
2063
  z.lazy(() => exports.Eighteen$inboundSchema),
2071
2064
  z.lazy(() => exports.Nineteen$inboundSchema),
2072
2065
  z.lazy(() => exports.Twenty$inboundSchema),
@@ -2086,25 +2079,25 @@ exports.FunctionParams$inboundSchema = z.union([
2086
2079
  ]);
2087
2080
  /** @internal */
2088
2081
  exports.FunctionParams$outboundSchema = z.union([
2089
- z.lazy(() => exports.Twelve$outboundSchema),
2082
+ z.lazy(() => exports.CreateEvalFunctionParams12$outboundSchema),
2090
2083
  z.lazy(() => exports.CreateEvalFunctionParams1$outboundSchema),
2091
2084
  z.lazy(() => exports.CreateEvalFunctionParams2$outboundSchema),
2092
2085
  z.lazy(() => exports.CreateEvalFunctionParams3$outboundSchema),
2093
2086
  z.lazy(() => exports.CreateEvalFunctionParams4$outboundSchema),
2094
- z.lazy(() => exports.Eight$outboundSchema),
2095
- z.lazy(() => exports.Nine$outboundSchema),
2096
- z.lazy(() => exports.Eleven$outboundSchema),
2097
- z.lazy(() => exports.Thirteen$outboundSchema),
2098
- z.lazy(() => exports.Fifteen$outboundSchema),
2087
+ z.lazy(() => exports.CreateEvalFunctionParams8$outboundSchema),
2088
+ z.lazy(() => exports.CreateEvalFunctionParams9$outboundSchema),
2089
+ z.lazy(() => exports.CreateEvalFunctionParams11$outboundSchema),
2090
+ z.lazy(() => exports.CreateEvalFunctionParams13$outboundSchema),
2091
+ z.lazy(() => exports.CreateEvalFunctionParams15$outboundSchema),
2099
2092
  z.lazy(() => exports.TwentyFive$outboundSchema),
2100
2093
  z.lazy(() => exports.TwentySix$outboundSchema),
2101
2094
  z.lazy(() => exports.CreateEvalFunctionParams5$outboundSchema),
2102
2095
  z.lazy(() => exports.CreateEvalFunctionParams6$outboundSchema),
2103
- z.lazy(() => exports.Seven$outboundSchema),
2104
- z.lazy(() => exports.Ten$outboundSchema),
2105
- z.lazy(() => exports.Fourteen$outboundSchema),
2106
- z.lazy(() => exports.Sixteen$outboundSchema),
2107
- z.lazy(() => exports.Seventeen$outboundSchema),
2096
+ z.lazy(() => exports.CreateEvalFunctionParams7$outboundSchema),
2097
+ z.lazy(() => exports.CreateEvalFunctionParams10$outboundSchema),
2098
+ z.lazy(() => exports.CreateEvalFunctionParams14$outboundSchema),
2099
+ z.lazy(() => exports.CreateEvalFunctionParams16$outboundSchema),
2100
+ z.lazy(() => exports.CreateEvalFunctionParams17$outboundSchema),
2108
2101
  z.lazy(() => exports.Eighteen$outboundSchema),
2109
2102
  z.lazy(() => exports.Nineteen$outboundSchema),
2110
2103
  z.lazy(() => exports.Twenty$outboundSchema),
@@ -2132,33 +2125,33 @@ function functionParamsFromJSON(jsonString) {
2132
2125
  exports.CreateEvalResponseBodyFunction$inboundSchema = z.object({
2133
2126
  _id: z.string(),
2134
2127
  description: z.string(),
2135
- created: z.string().default("2025-11-20T07:47:06.974Z"),
2136
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
2128
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
2129
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
2137
2130
  guardrail_config: z.union([
2138
2131
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
2139
2132
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
2140
2133
  ]).optional(),
2141
2134
  type: exports.CreateEvalResponseBodyEvalsResponse200Type$inboundSchema,
2142
2135
  function_params: z.union([
2143
- z.lazy(() => exports.Twelve$inboundSchema),
2136
+ z.lazy(() => exports.CreateEvalFunctionParams12$inboundSchema),
2144
2137
  z.lazy(() => exports.CreateEvalFunctionParams1$inboundSchema),
2145
2138
  z.lazy(() => exports.CreateEvalFunctionParams2$inboundSchema),
2146
2139
  z.lazy(() => exports.CreateEvalFunctionParams3$inboundSchema),
2147
2140
  z.lazy(() => exports.CreateEvalFunctionParams4$inboundSchema),
2148
- z.lazy(() => exports.Eight$inboundSchema),
2149
- z.lazy(() => exports.Nine$inboundSchema),
2150
- z.lazy(() => exports.Eleven$inboundSchema),
2151
- z.lazy(() => exports.Thirteen$inboundSchema),
2152
- z.lazy(() => exports.Fifteen$inboundSchema),
2141
+ z.lazy(() => exports.CreateEvalFunctionParams8$inboundSchema),
2142
+ z.lazy(() => exports.CreateEvalFunctionParams9$inboundSchema),
2143
+ z.lazy(() => exports.CreateEvalFunctionParams11$inboundSchema),
2144
+ z.lazy(() => exports.CreateEvalFunctionParams13$inboundSchema),
2145
+ z.lazy(() => exports.CreateEvalFunctionParams15$inboundSchema),
2153
2146
  z.lazy(() => exports.TwentyFive$inboundSchema),
2154
2147
  z.lazy(() => exports.TwentySix$inboundSchema),
2155
2148
  z.lazy(() => exports.CreateEvalFunctionParams5$inboundSchema),
2156
2149
  z.lazy(() => exports.CreateEvalFunctionParams6$inboundSchema),
2157
- z.lazy(() => exports.Seven$inboundSchema),
2158
- z.lazy(() => exports.Ten$inboundSchema),
2159
- z.lazy(() => exports.Fourteen$inboundSchema),
2160
- z.lazy(() => exports.Sixteen$inboundSchema),
2161
- z.lazy(() => exports.Seventeen$inboundSchema),
2150
+ z.lazy(() => exports.CreateEvalFunctionParams7$inboundSchema),
2151
+ z.lazy(() => exports.CreateEvalFunctionParams10$inboundSchema),
2152
+ z.lazy(() => exports.CreateEvalFunctionParams14$inboundSchema),
2153
+ z.lazy(() => exports.CreateEvalFunctionParams16$inboundSchema),
2154
+ z.lazy(() => exports.CreateEvalFunctionParams17$inboundSchema),
2162
2155
  z.lazy(() => exports.Eighteen$inboundSchema),
2163
2156
  z.lazy(() => exports.Nineteen$inboundSchema),
2164
2157
  z.lazy(() => exports.Twenty$inboundSchema),
@@ -2188,33 +2181,33 @@ exports.CreateEvalResponseBodyFunction$inboundSchema = z.object({
2188
2181
  exports.CreateEvalResponseBodyFunction$outboundSchema = z.object({
2189
2182
  id: z.string(),
2190
2183
  description: z.string(),
2191
- created: z.string().default("2025-11-20T07:47:06.974Z"),
2192
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
2184
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
2185
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
2193
2186
  guardrailConfig: z.union([
2194
2187
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
2195
2188
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
2196
2189
  ]).optional(),
2197
2190
  type: exports.CreateEvalResponseBodyEvalsResponse200Type$outboundSchema,
2198
2191
  functionParams: z.union([
2199
- z.lazy(() => exports.Twelve$outboundSchema),
2192
+ z.lazy(() => exports.CreateEvalFunctionParams12$outboundSchema),
2200
2193
  z.lazy(() => exports.CreateEvalFunctionParams1$outboundSchema),
2201
2194
  z.lazy(() => exports.CreateEvalFunctionParams2$outboundSchema),
2202
2195
  z.lazy(() => exports.CreateEvalFunctionParams3$outboundSchema),
2203
2196
  z.lazy(() => exports.CreateEvalFunctionParams4$outboundSchema),
2204
- z.lazy(() => exports.Eight$outboundSchema),
2205
- z.lazy(() => exports.Nine$outboundSchema),
2206
- z.lazy(() => exports.Eleven$outboundSchema),
2207
- z.lazy(() => exports.Thirteen$outboundSchema),
2208
- z.lazy(() => exports.Fifteen$outboundSchema),
2197
+ z.lazy(() => exports.CreateEvalFunctionParams8$outboundSchema),
2198
+ z.lazy(() => exports.CreateEvalFunctionParams9$outboundSchema),
2199
+ z.lazy(() => exports.CreateEvalFunctionParams11$outboundSchema),
2200
+ z.lazy(() => exports.CreateEvalFunctionParams13$outboundSchema),
2201
+ z.lazy(() => exports.CreateEvalFunctionParams15$outboundSchema),
2209
2202
  z.lazy(() => exports.TwentyFive$outboundSchema),
2210
2203
  z.lazy(() => exports.TwentySix$outboundSchema),
2211
2204
  z.lazy(() => exports.CreateEvalFunctionParams5$outboundSchema),
2212
2205
  z.lazy(() => exports.CreateEvalFunctionParams6$outboundSchema),
2213
- z.lazy(() => exports.Seven$outboundSchema),
2214
- z.lazy(() => exports.Ten$outboundSchema),
2215
- z.lazy(() => exports.Fourteen$outboundSchema),
2216
- z.lazy(() => exports.Sixteen$outboundSchema),
2217
- z.lazy(() => exports.Seventeen$outboundSchema),
2206
+ z.lazy(() => exports.CreateEvalFunctionParams7$outboundSchema),
2207
+ z.lazy(() => exports.CreateEvalFunctionParams10$outboundSchema),
2208
+ z.lazy(() => exports.CreateEvalFunctionParams14$outboundSchema),
2209
+ z.lazy(() => exports.CreateEvalFunctionParams16$outboundSchema),
2210
+ z.lazy(() => exports.CreateEvalFunctionParams17$outboundSchema),
2218
2211
  z.lazy(() => exports.Eighteen$outboundSchema),
2219
2212
  z.lazy(() => exports.Nineteen$outboundSchema),
2220
2213
  z.lazy(() => exports.Twenty$outboundSchema),
@@ -2325,8 +2318,8 @@ exports.CreateEvalResponseBodyEvalsResponseType$outboundSchema = exports.CreateE
2325
2318
  exports.ResponseBodyPython$inboundSchema = z.object({
2326
2319
  _id: z.string(),
2327
2320
  description: z.string(),
2328
- created: z.string().default("2025-11-20T07:47:06.974Z"),
2329
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
2321
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
2322
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
2330
2323
  guardrail_config: z.union([
2331
2324
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
2332
2325
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
@@ -2344,8 +2337,8 @@ exports.ResponseBodyPython$inboundSchema = z.object({
2344
2337
  exports.ResponseBodyPython$outboundSchema = z.object({
2345
2338
  id: z.string(),
2346
2339
  description: z.string(),
2347
- created: z.string().default("2025-11-20T07:47:06.974Z"),
2348
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
2340
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
2341
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
2349
2342
  guardrailConfig: z.union([
2350
2343
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
2351
2344
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
@@ -2447,8 +2440,8 @@ exports.ResponseBodyMethod$outboundSchema = exports.ResponseBodyMethod$inboundSc
2447
2440
  exports.ResponseBodyHTTP$inboundSchema = z.object({
2448
2441
  _id: z.string(),
2449
2442
  description: z.string(),
2450
- created: z.string().default("2025-11-20T07:47:06.974Z"),
2451
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
2443
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
2444
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
2452
2445
  guardrail_config: z.union([
2453
2446
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
2454
2447
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
@@ -2469,8 +2462,8 @@ exports.ResponseBodyHTTP$inboundSchema = z.object({
2469
2462
  exports.ResponseBodyHTTP$outboundSchema = z.object({
2470
2463
  id: z.string(),
2471
2464
  description: z.string(),
2472
- created: z.string().default("2025-11-20T07:47:06.974Z"),
2473
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
2465
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
2466
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
2474
2467
  guardrailConfig: z.union([
2475
2468
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
2476
2469
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
@@ -2568,8 +2561,8 @@ exports.CreateEvalResponseBodyType$outboundSchema = exports.CreateEvalResponseBo
2568
2561
  exports.ResponseBodyJSON$inboundSchema = z.object({
2569
2562
  _id: z.string(),
2570
2563
  description: z.string(),
2571
- created: z.string().default("2025-11-20T07:47:06.974Z"),
2572
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
2564
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
2565
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
2573
2566
  guardrail_config: z.union([
2574
2567
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
2575
2568
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
@@ -2587,8 +2580,8 @@ exports.ResponseBodyJSON$inboundSchema = z.object({
2587
2580
  exports.ResponseBodyJSON$outboundSchema = z.object({
2588
2581
  id: z.string(),
2589
2582
  description: z.string(),
2590
- created: z.string().default("2025-11-20T07:47:06.974Z"),
2591
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
2583
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
2584
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
2592
2585
  guardrailConfig: z.union([
2593
2586
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
2594
2587
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
@@ -2685,8 +2678,8 @@ exports.ResponseBodyType$outboundSchema = exports.ResponseBodyType$inboundSchema
2685
2678
  exports.ResponseBodyLLM$inboundSchema = z.object({
2686
2679
  _id: z.string(),
2687
2680
  description: z.string(),
2688
- created: z.string().default("2025-11-20T07:47:06.974Z"),
2689
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
2681
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
2682
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
2690
2683
  guardrail_config: z.union([
2691
2684
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
2692
2685
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
@@ -2705,8 +2698,8 @@ exports.ResponseBodyLLM$inboundSchema = z.object({
2705
2698
  exports.ResponseBodyLLM$outboundSchema = z.object({
2706
2699
  id: z.string(),
2707
2700
  description: z.string(),
2708
- created: z.string().default("2025-11-20T07:47:06.974Z"),
2709
- updated: z.string().default("2025-11-20T07:47:06.974Z"),
2701
+ created: z.string().default("2025-11-20T08:19:19.500Z"),
2702
+ updated: z.string().default("2025-11-20T08:19:19.500Z"),
2710
2703
  guardrailConfig: z.union([
2711
2704
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
2712
2705
  z.lazy(() => exports.CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),