@orq-ai/node 4.0.10 → 4.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +276 -417
- package/bin/mcp-server.js.map +37 -37
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.d.ts +14 -79
- package/models/operations/createeval.d.ts.map +1 -1
- package/models/operations/createeval.js +51 -134
- package/models/operations/createeval.js.map +1 -1
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.d.ts +14 -79
- package/models/operations/getevals.d.ts.map +1 -1
- package/models/operations/getevals.js +49 -132
- package/models/operations/getevals.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.d.ts +14 -79
- package/models/operations/updateeval.d.ts.map +1 -1
- package/models/operations/updateeval.js +51 -134
- package/models/operations/updateeval.js.map +1 -1
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/components/datapart.ts +71 -0
- package/packages/orq-rc/src/models/components/filepart.ts +231 -0
- package/packages/orq-rc/src/models/components/index.ts +5 -0
- package/packages/orq-rc/src/models/components/invokedeploymentrequest.ts +34 -25
- package/packages/orq-rc/src/models/components/textpart.ts +68 -0
- package/packages/orq-rc/src/models/components/toolcallpart.ts +92 -0
- package/packages/orq-rc/src/models/components/toolresultpart.ts +86 -0
- package/packages/orq-rc/src/models/operations/createagentresponserequest.ts +188 -95
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createprompt.ts +9 -11
- package/packages/orq-rc/src/models/operations/createtool.ts +12 -12
- package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +9 -11
- package/packages/orq-rc/src/models/operations/deployments.ts +9 -11
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +9 -11
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getallprompts.ts +9 -11
- package/packages/orq-rc/src/models/operations/getalltools.ts +12 -12
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +9 -11
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +9 -11
- package/packages/orq-rc/src/models/operations/invokeagent.ts +158 -682
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +9 -11
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +143 -697
- package/packages/orq-rc/src/models/operations/streamagent.ts +2222 -4559
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +2189 -4615
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +9 -20
- package/packages/orq-rc/src/models/operations/updateprompt.ts +18 -22
- package/packages/orq-rc/src/models/operations/updatetool.ts +14 -14
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +52 -275
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +52 -287
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +52 -287
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -576,51 +576,9 @@ export type CreateEvalResponseBodyEvalsResponse200Type = ClosedEnum<
|
|
|
576
576
|
typeof CreateEvalResponseBodyEvalsResponse200Type
|
|
577
577
|
>;
|
|
578
578
|
|
|
579
|
-
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type =
|
|
580
|
-
{
|
|
581
|
-
BertCoherence: "bert_coherence",
|
|
582
|
-
} as const;
|
|
583
|
-
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type =
|
|
584
|
-
ClosedEnum<
|
|
585
|
-
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type
|
|
586
|
-
>;
|
|
587
|
-
|
|
588
|
-
export type ThirtyFive = {
|
|
589
|
-
type:
|
|
590
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type;
|
|
591
|
-
};
|
|
592
|
-
|
|
593
|
-
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type =
|
|
594
|
-
{
|
|
595
|
-
GrammarDiversity: "grammar_diversity",
|
|
596
|
-
} as const;
|
|
597
|
-
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type =
|
|
598
|
-
ClosedEnum<
|
|
599
|
-
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type
|
|
600
|
-
>;
|
|
601
|
-
|
|
602
|
-
export type ThirtyFour = {
|
|
603
|
-
type:
|
|
604
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type;
|
|
605
|
-
};
|
|
606
|
-
|
|
607
|
-
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type =
|
|
608
|
-
{
|
|
609
|
-
SemanticRepetition: "semantic_repetition",
|
|
610
|
-
} as const;
|
|
611
|
-
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type =
|
|
612
|
-
ClosedEnum<
|
|
613
|
-
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type
|
|
614
|
-
>;
|
|
615
|
-
|
|
616
|
-
export type ThirtyThree = {
|
|
617
|
-
type:
|
|
618
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type;
|
|
619
|
-
};
|
|
620
|
-
|
|
621
579
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody532Type =
|
|
622
580
|
{
|
|
623
|
-
|
|
581
|
+
GrammarDiversity: "grammar_diversity",
|
|
624
582
|
} as const;
|
|
625
583
|
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody532Type =
|
|
626
584
|
ClosedEnum<
|
|
@@ -634,7 +592,7 @@ export type ThirtyTwo = {
|
|
|
634
592
|
|
|
635
593
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody531Type =
|
|
636
594
|
{
|
|
637
|
-
|
|
595
|
+
LexicalRepetition: "lexical_repetition",
|
|
638
596
|
} as const;
|
|
639
597
|
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody531Type =
|
|
640
598
|
ClosedEnum<
|
|
@@ -648,7 +606,7 @@ export type ThirtyOne = {
|
|
|
648
606
|
|
|
649
607
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody530Type =
|
|
650
608
|
{
|
|
651
|
-
|
|
609
|
+
SentencesCount: "sentences_count",
|
|
652
610
|
} as const;
|
|
653
611
|
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody530Type =
|
|
654
612
|
ClosedEnum<
|
|
@@ -662,7 +620,7 @@ export type Thirty = {
|
|
|
662
620
|
|
|
663
621
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody529Type =
|
|
664
622
|
{
|
|
665
|
-
|
|
623
|
+
WordsCount: "words_count",
|
|
666
624
|
} as const;
|
|
667
625
|
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody529Type =
|
|
668
626
|
ClosedEnum<
|
|
@@ -676,7 +634,7 @@ export type TwentyNine = {
|
|
|
676
634
|
|
|
677
635
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody528Type =
|
|
678
636
|
{
|
|
679
|
-
|
|
637
|
+
GseEnglishLevel: "gse_english_level",
|
|
680
638
|
} as const;
|
|
681
639
|
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody528Type =
|
|
682
640
|
ClosedEnum<
|
|
@@ -690,7 +648,7 @@ export type TwentyEight = {
|
|
|
690
648
|
|
|
691
649
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody527Type =
|
|
692
650
|
{
|
|
693
|
-
|
|
651
|
+
FleschReadingEase: "flesch_reading_ease",
|
|
694
652
|
} as const;
|
|
695
653
|
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody527Type =
|
|
696
654
|
ClosedEnum<
|
|
@@ -704,7 +662,7 @@ export type TwentySeven = {
|
|
|
704
662
|
|
|
705
663
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody526Type =
|
|
706
664
|
{
|
|
707
|
-
|
|
665
|
+
MostRepeatedWords: "most_repeated_words",
|
|
708
666
|
} as const;
|
|
709
667
|
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody526Type =
|
|
710
668
|
ClosedEnum<
|
|
@@ -714,12 +672,11 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
714
672
|
export type TwentySix = {
|
|
715
673
|
type:
|
|
716
674
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody526Type;
|
|
717
|
-
keywords: Array<string>;
|
|
718
675
|
};
|
|
719
676
|
|
|
720
677
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody525Type =
|
|
721
678
|
{
|
|
722
|
-
|
|
679
|
+
KeywordsMatch: "keywords_match",
|
|
723
680
|
} as const;
|
|
724
681
|
export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody525Type =
|
|
725
682
|
ClosedEnum<
|
|
@@ -729,7 +686,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
729
686
|
export type TwentyFive = {
|
|
730
687
|
type:
|
|
731
688
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody525Type;
|
|
732
|
-
|
|
689
|
+
keywords: Array<string>;
|
|
733
690
|
};
|
|
734
691
|
|
|
735
692
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody524Type =
|
|
@@ -1071,7 +1028,6 @@ export type FunctionParams =
|
|
|
1071
1028
|
| CreateEvalFunctionParams13
|
|
1072
1029
|
| CreateEvalFunctionParams15
|
|
1073
1030
|
| TwentyFive
|
|
1074
|
-
| TwentySix
|
|
1075
1031
|
| CreateEvalFunctionParams5
|
|
1076
1032
|
| CreateEvalFunctionParams6
|
|
1077
1033
|
| CreateEvalFunctionParams7
|
|
@@ -1086,15 +1042,13 @@ export type FunctionParams =
|
|
|
1086
1042
|
| TwentyTwo
|
|
1087
1043
|
| TwentyThree
|
|
1088
1044
|
| TwentyFour
|
|
1045
|
+
| TwentySix
|
|
1089
1046
|
| TwentySeven
|
|
1090
1047
|
| TwentyEight
|
|
1091
1048
|
| TwentyNine
|
|
1092
1049
|
| Thirty
|
|
1093
1050
|
| ThirtyOne
|
|
1094
|
-
| ThirtyTwo
|
|
1095
|
-
| ThirtyThree
|
|
1096
|
-
| ThirtyFour
|
|
1097
|
-
| ThirtyFive;
|
|
1051
|
+
| ThirtyTwo;
|
|
1098
1052
|
|
|
1099
1053
|
export type CreateEvalResponseBodyFunction = {
|
|
1100
1054
|
id: string;
|
|
@@ -1118,7 +1072,6 @@ export type CreateEvalResponseBodyFunction = {
|
|
|
1118
1072
|
| CreateEvalFunctionParams13
|
|
1119
1073
|
| CreateEvalFunctionParams15
|
|
1120
1074
|
| TwentyFive
|
|
1121
|
-
| TwentySix
|
|
1122
1075
|
| CreateEvalFunctionParams5
|
|
1123
1076
|
| CreateEvalFunctionParams6
|
|
1124
1077
|
| CreateEvalFunctionParams7
|
|
@@ -1133,15 +1086,13 @@ export type CreateEvalResponseBodyFunction = {
|
|
|
1133
1086
|
| TwentyTwo
|
|
1134
1087
|
| TwentyThree
|
|
1135
1088
|
| TwentyFour
|
|
1089
|
+
| TwentySix
|
|
1136
1090
|
| TwentySeven
|
|
1137
1091
|
| TwentyEight
|
|
1138
1092
|
| TwentyNine
|
|
1139
1093
|
| Thirty
|
|
1140
1094
|
| ThirtyOne
|
|
1141
|
-
| ThirtyTwo
|
|
1142
|
-
| ThirtyThree
|
|
1143
|
-
| ThirtyFour
|
|
1144
|
-
| ThirtyFive;
|
|
1095
|
+
| ThirtyTwo;
|
|
1145
1096
|
key: string;
|
|
1146
1097
|
};
|
|
1147
1098
|
|
|
@@ -2756,8 +2707,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2756
2707
|
> = z.object({
|
|
2757
2708
|
_id: z.string(),
|
|
2758
2709
|
description: z.string(),
|
|
2759
|
-
created: z.string().default("2025-11-
|
|
2760
|
-
updated: z.string().default("2025-11-
|
|
2710
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
2711
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
2761
2712
|
guardrail_config: z.union([
|
|
2762
2713
|
z.lazy(() =>
|
|
2763
2714
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2799,8 +2750,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2799
2750
|
> = z.object({
|
|
2800
2751
|
id: z.string(),
|
|
2801
2752
|
description: z.string(),
|
|
2802
|
-
created: z.string().default("2025-11-
|
|
2803
|
-
updated: z.string().default("2025-11-
|
|
2753
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
2754
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
2804
2755
|
guardrailConfig: z.union([
|
|
2805
2756
|
z.lazy(() =>
|
|
2806
2757
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3081,8 +3032,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3081
3032
|
.object({
|
|
3082
3033
|
_id: z.string(),
|
|
3083
3034
|
description: z.string(),
|
|
3084
|
-
created: z.string().default("2025-11-
|
|
3085
|
-
updated: z.string().default("2025-11-
|
|
3035
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
3036
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
3086
3037
|
guardrail_config: z.union([
|
|
3087
3038
|
z.lazy(() =>
|
|
3088
3039
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3127,8 +3078,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3127
3078
|
> = z.object({
|
|
3128
3079
|
id: z.string(),
|
|
3129
3080
|
description: z.string(),
|
|
3130
|
-
created: z.string().default("2025-11-
|
|
3131
|
-
updated: z.string().default("2025-11-
|
|
3081
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
3082
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
3132
3083
|
guardrailConfig: z.union([
|
|
3133
3084
|
z.lazy(() =>
|
|
3134
3085
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -3397,159 +3348,6 @@ export const CreateEvalResponseBodyEvalsResponse200Type$outboundSchema:
|
|
|
3397
3348
|
z.ZodNativeEnum<typeof CreateEvalResponseBodyEvalsResponse200Type> =
|
|
3398
3349
|
CreateEvalResponseBodyEvalsResponse200Type$inboundSchema;
|
|
3399
3350
|
|
|
3400
|
-
/** @internal */
|
|
3401
|
-
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type$inboundSchema:
|
|
3402
|
-
z.ZodNativeEnum<
|
|
3403
|
-
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type
|
|
3404
|
-
> = z.nativeEnum(
|
|
3405
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type,
|
|
3406
|
-
);
|
|
3407
|
-
/** @internal */
|
|
3408
|
-
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type$outboundSchema:
|
|
3409
|
-
z.ZodNativeEnum<
|
|
3410
|
-
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type
|
|
3411
|
-
> =
|
|
3412
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type$inboundSchema;
|
|
3413
|
-
|
|
3414
|
-
/** @internal */
|
|
3415
|
-
export const ThirtyFive$inboundSchema: z.ZodType<
|
|
3416
|
-
ThirtyFive,
|
|
3417
|
-
z.ZodTypeDef,
|
|
3418
|
-
unknown
|
|
3419
|
-
> = z.object({
|
|
3420
|
-
type:
|
|
3421
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type$inboundSchema,
|
|
3422
|
-
});
|
|
3423
|
-
/** @internal */
|
|
3424
|
-
export type ThirtyFive$Outbound = {
|
|
3425
|
-
type: string;
|
|
3426
|
-
};
|
|
3427
|
-
|
|
3428
|
-
/** @internal */
|
|
3429
|
-
export const ThirtyFive$outboundSchema: z.ZodType<
|
|
3430
|
-
ThirtyFive$Outbound,
|
|
3431
|
-
z.ZodTypeDef,
|
|
3432
|
-
ThirtyFive
|
|
3433
|
-
> = z.object({
|
|
3434
|
-
type:
|
|
3435
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type$outboundSchema,
|
|
3436
|
-
});
|
|
3437
|
-
|
|
3438
|
-
export function thirtyFiveToJSON(thirtyFive: ThirtyFive): string {
|
|
3439
|
-
return JSON.stringify(ThirtyFive$outboundSchema.parse(thirtyFive));
|
|
3440
|
-
}
|
|
3441
|
-
export function thirtyFiveFromJSON(
|
|
3442
|
-
jsonString: string,
|
|
3443
|
-
): SafeParseResult<ThirtyFive, SDKValidationError> {
|
|
3444
|
-
return safeParse(
|
|
3445
|
-
jsonString,
|
|
3446
|
-
(x) => ThirtyFive$inboundSchema.parse(JSON.parse(x)),
|
|
3447
|
-
`Failed to parse 'ThirtyFive' from JSON`,
|
|
3448
|
-
);
|
|
3449
|
-
}
|
|
3450
|
-
|
|
3451
|
-
/** @internal */
|
|
3452
|
-
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type$inboundSchema:
|
|
3453
|
-
z.ZodNativeEnum<
|
|
3454
|
-
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type
|
|
3455
|
-
> = z.nativeEnum(
|
|
3456
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type,
|
|
3457
|
-
);
|
|
3458
|
-
/** @internal */
|
|
3459
|
-
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type$outboundSchema:
|
|
3460
|
-
z.ZodNativeEnum<
|
|
3461
|
-
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type
|
|
3462
|
-
> =
|
|
3463
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type$inboundSchema;
|
|
3464
|
-
|
|
3465
|
-
/** @internal */
|
|
3466
|
-
export const ThirtyFour$inboundSchema: z.ZodType<
|
|
3467
|
-
ThirtyFour,
|
|
3468
|
-
z.ZodTypeDef,
|
|
3469
|
-
unknown
|
|
3470
|
-
> = z.object({
|
|
3471
|
-
type:
|
|
3472
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type$inboundSchema,
|
|
3473
|
-
});
|
|
3474
|
-
/** @internal */
|
|
3475
|
-
export type ThirtyFour$Outbound = {
|
|
3476
|
-
type: string;
|
|
3477
|
-
};
|
|
3478
|
-
|
|
3479
|
-
/** @internal */
|
|
3480
|
-
export const ThirtyFour$outboundSchema: z.ZodType<
|
|
3481
|
-
ThirtyFour$Outbound,
|
|
3482
|
-
z.ZodTypeDef,
|
|
3483
|
-
ThirtyFour
|
|
3484
|
-
> = z.object({
|
|
3485
|
-
type:
|
|
3486
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody534Type$outboundSchema,
|
|
3487
|
-
});
|
|
3488
|
-
|
|
3489
|
-
export function thirtyFourToJSON(thirtyFour: ThirtyFour): string {
|
|
3490
|
-
return JSON.stringify(ThirtyFour$outboundSchema.parse(thirtyFour));
|
|
3491
|
-
}
|
|
3492
|
-
export function thirtyFourFromJSON(
|
|
3493
|
-
jsonString: string,
|
|
3494
|
-
): SafeParseResult<ThirtyFour, SDKValidationError> {
|
|
3495
|
-
return safeParse(
|
|
3496
|
-
jsonString,
|
|
3497
|
-
(x) => ThirtyFour$inboundSchema.parse(JSON.parse(x)),
|
|
3498
|
-
`Failed to parse 'ThirtyFour' from JSON`,
|
|
3499
|
-
);
|
|
3500
|
-
}
|
|
3501
|
-
|
|
3502
|
-
/** @internal */
|
|
3503
|
-
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type$inboundSchema:
|
|
3504
|
-
z.ZodNativeEnum<
|
|
3505
|
-
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type
|
|
3506
|
-
> = z.nativeEnum(
|
|
3507
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type,
|
|
3508
|
-
);
|
|
3509
|
-
/** @internal */
|
|
3510
|
-
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type$outboundSchema:
|
|
3511
|
-
z.ZodNativeEnum<
|
|
3512
|
-
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type
|
|
3513
|
-
> =
|
|
3514
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type$inboundSchema;
|
|
3515
|
-
|
|
3516
|
-
/** @internal */
|
|
3517
|
-
export const ThirtyThree$inboundSchema: z.ZodType<
|
|
3518
|
-
ThirtyThree,
|
|
3519
|
-
z.ZodTypeDef,
|
|
3520
|
-
unknown
|
|
3521
|
-
> = z.object({
|
|
3522
|
-
type:
|
|
3523
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type$inboundSchema,
|
|
3524
|
-
});
|
|
3525
|
-
/** @internal */
|
|
3526
|
-
export type ThirtyThree$Outbound = {
|
|
3527
|
-
type: string;
|
|
3528
|
-
};
|
|
3529
|
-
|
|
3530
|
-
/** @internal */
|
|
3531
|
-
export const ThirtyThree$outboundSchema: z.ZodType<
|
|
3532
|
-
ThirtyThree$Outbound,
|
|
3533
|
-
z.ZodTypeDef,
|
|
3534
|
-
ThirtyThree
|
|
3535
|
-
> = z.object({
|
|
3536
|
-
type:
|
|
3537
|
-
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody533Type$outboundSchema,
|
|
3538
|
-
});
|
|
3539
|
-
|
|
3540
|
-
export function thirtyThreeToJSON(thirtyThree: ThirtyThree): string {
|
|
3541
|
-
return JSON.stringify(ThirtyThree$outboundSchema.parse(thirtyThree));
|
|
3542
|
-
}
|
|
3543
|
-
export function thirtyThreeFromJSON(
|
|
3544
|
-
jsonString: string,
|
|
3545
|
-
): SafeParseResult<ThirtyThree, SDKValidationError> {
|
|
3546
|
-
return safeParse(
|
|
3547
|
-
jsonString,
|
|
3548
|
-
(x) => ThirtyThree$inboundSchema.parse(JSON.parse(x)),
|
|
3549
|
-
`Failed to parse 'ThirtyThree' from JSON`,
|
|
3550
|
-
);
|
|
3551
|
-
}
|
|
3552
|
-
|
|
3553
3351
|
/** @internal */
|
|
3554
3352
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody532Type$inboundSchema:
|
|
3555
3353
|
z.ZodNativeEnum<
|
|
@@ -3875,12 +3673,10 @@ export const TwentySix$inboundSchema: z.ZodType<
|
|
|
3875
3673
|
> = z.object({
|
|
3876
3674
|
type:
|
|
3877
3675
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody526Type$inboundSchema,
|
|
3878
|
-
keywords: z.array(z.string()),
|
|
3879
3676
|
});
|
|
3880
3677
|
/** @internal */
|
|
3881
3678
|
export type TwentySix$Outbound = {
|
|
3882
3679
|
type: string;
|
|
3883
|
-
keywords: Array<string>;
|
|
3884
3680
|
};
|
|
3885
3681
|
|
|
3886
3682
|
/** @internal */
|
|
@@ -3891,7 +3687,6 @@ export const TwentySix$outboundSchema: z.ZodType<
|
|
|
3891
3687
|
> = z.object({
|
|
3892
3688
|
type:
|
|
3893
3689
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody526Type$outboundSchema,
|
|
3894
|
-
keywords: z.array(z.string()),
|
|
3895
3690
|
});
|
|
3896
3691
|
|
|
3897
3692
|
export function twentySixToJSON(twentySix: TwentySix): string {
|
|
@@ -3929,12 +3724,12 @@ export const TwentyFive$inboundSchema: z.ZodType<
|
|
|
3929
3724
|
> = z.object({
|
|
3930
3725
|
type:
|
|
3931
3726
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody525Type$inboundSchema,
|
|
3932
|
-
|
|
3727
|
+
keywords: z.array(z.string()),
|
|
3933
3728
|
});
|
|
3934
3729
|
/** @internal */
|
|
3935
3730
|
export type TwentyFive$Outbound = {
|
|
3936
3731
|
type: string;
|
|
3937
|
-
|
|
3732
|
+
keywords: Array<string>;
|
|
3938
3733
|
};
|
|
3939
3734
|
|
|
3940
3735
|
/** @internal */
|
|
@@ -3945,7 +3740,7 @@ export const TwentyFive$outboundSchema: z.ZodType<
|
|
|
3945
3740
|
> = z.object({
|
|
3946
3741
|
type:
|
|
3947
3742
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody525Type$outboundSchema,
|
|
3948
|
-
|
|
3743
|
+
keywords: z.array(z.string()),
|
|
3949
3744
|
});
|
|
3950
3745
|
|
|
3951
3746
|
export function twentyFiveToJSON(twentyFive: TwentyFive): string {
|
|
@@ -5262,7 +5057,6 @@ export const FunctionParams$inboundSchema: z.ZodType<
|
|
|
5262
5057
|
z.lazy(() => CreateEvalFunctionParams13$inboundSchema),
|
|
5263
5058
|
z.lazy(() => CreateEvalFunctionParams15$inboundSchema),
|
|
5264
5059
|
z.lazy(() => TwentyFive$inboundSchema),
|
|
5265
|
-
z.lazy(() => TwentySix$inboundSchema),
|
|
5266
5060
|
z.lazy(() => CreateEvalFunctionParams5$inboundSchema),
|
|
5267
5061
|
z.lazy(() => CreateEvalFunctionParams6$inboundSchema),
|
|
5268
5062
|
z.lazy(() => CreateEvalFunctionParams7$inboundSchema),
|
|
@@ -5277,15 +5071,13 @@ export const FunctionParams$inboundSchema: z.ZodType<
|
|
|
5277
5071
|
z.lazy(() => TwentyTwo$inboundSchema),
|
|
5278
5072
|
z.lazy(() => TwentyThree$inboundSchema),
|
|
5279
5073
|
z.lazy(() => TwentyFour$inboundSchema),
|
|
5074
|
+
z.lazy(() => TwentySix$inboundSchema),
|
|
5280
5075
|
z.lazy(() => TwentySeven$inboundSchema),
|
|
5281
5076
|
z.lazy(() => TwentyEight$inboundSchema),
|
|
5282
5077
|
z.lazy(() => TwentyNine$inboundSchema),
|
|
5283
5078
|
z.lazy(() => Thirty$inboundSchema),
|
|
5284
5079
|
z.lazy(() => ThirtyOne$inboundSchema),
|
|
5285
5080
|
z.lazy(() => ThirtyTwo$inboundSchema),
|
|
5286
|
-
z.lazy(() => ThirtyThree$inboundSchema),
|
|
5287
|
-
z.lazy(() => ThirtyFour$inboundSchema),
|
|
5288
|
-
z.lazy(() => ThirtyFive$inboundSchema),
|
|
5289
5081
|
]);
|
|
5290
5082
|
/** @internal */
|
|
5291
5083
|
export type FunctionParams$Outbound =
|
|
@@ -5300,7 +5092,6 @@ export type FunctionParams$Outbound =
|
|
|
5300
5092
|
| CreateEvalFunctionParams13$Outbound
|
|
5301
5093
|
| CreateEvalFunctionParams15$Outbound
|
|
5302
5094
|
| TwentyFive$Outbound
|
|
5303
|
-
| TwentySix$Outbound
|
|
5304
5095
|
| CreateEvalFunctionParams5$Outbound
|
|
5305
5096
|
| CreateEvalFunctionParams6$Outbound
|
|
5306
5097
|
| CreateEvalFunctionParams7$Outbound
|
|
@@ -5315,15 +5106,13 @@ export type FunctionParams$Outbound =
|
|
|
5315
5106
|
| TwentyTwo$Outbound
|
|
5316
5107
|
| TwentyThree$Outbound
|
|
5317
5108
|
| TwentyFour$Outbound
|
|
5109
|
+
| TwentySix$Outbound
|
|
5318
5110
|
| TwentySeven$Outbound
|
|
5319
5111
|
| TwentyEight$Outbound
|
|
5320
5112
|
| TwentyNine$Outbound
|
|
5321
5113
|
| Thirty$Outbound
|
|
5322
5114
|
| ThirtyOne$Outbound
|
|
5323
|
-
| ThirtyTwo$Outbound
|
|
5324
|
-
| ThirtyThree$Outbound
|
|
5325
|
-
| ThirtyFour$Outbound
|
|
5326
|
-
| ThirtyFive$Outbound;
|
|
5115
|
+
| ThirtyTwo$Outbound;
|
|
5327
5116
|
|
|
5328
5117
|
/** @internal */
|
|
5329
5118
|
export const FunctionParams$outboundSchema: z.ZodType<
|
|
@@ -5342,7 +5131,6 @@ export const FunctionParams$outboundSchema: z.ZodType<
|
|
|
5342
5131
|
z.lazy(() => CreateEvalFunctionParams13$outboundSchema),
|
|
5343
5132
|
z.lazy(() => CreateEvalFunctionParams15$outboundSchema),
|
|
5344
5133
|
z.lazy(() => TwentyFive$outboundSchema),
|
|
5345
|
-
z.lazy(() => TwentySix$outboundSchema),
|
|
5346
5134
|
z.lazy(() => CreateEvalFunctionParams5$outboundSchema),
|
|
5347
5135
|
z.lazy(() => CreateEvalFunctionParams6$outboundSchema),
|
|
5348
5136
|
z.lazy(() => CreateEvalFunctionParams7$outboundSchema),
|
|
@@ -5357,15 +5145,13 @@ export const FunctionParams$outboundSchema: z.ZodType<
|
|
|
5357
5145
|
z.lazy(() => TwentyTwo$outboundSchema),
|
|
5358
5146
|
z.lazy(() => TwentyThree$outboundSchema),
|
|
5359
5147
|
z.lazy(() => TwentyFour$outboundSchema),
|
|
5148
|
+
z.lazy(() => TwentySix$outboundSchema),
|
|
5360
5149
|
z.lazy(() => TwentySeven$outboundSchema),
|
|
5361
5150
|
z.lazy(() => TwentyEight$outboundSchema),
|
|
5362
5151
|
z.lazy(() => TwentyNine$outboundSchema),
|
|
5363
5152
|
z.lazy(() => Thirty$outboundSchema),
|
|
5364
5153
|
z.lazy(() => ThirtyOne$outboundSchema),
|
|
5365
5154
|
z.lazy(() => ThirtyTwo$outboundSchema),
|
|
5366
|
-
z.lazy(() => ThirtyThree$outboundSchema),
|
|
5367
|
-
z.lazy(() => ThirtyFour$outboundSchema),
|
|
5368
|
-
z.lazy(() => ThirtyFive$outboundSchema),
|
|
5369
5155
|
]);
|
|
5370
5156
|
|
|
5371
5157
|
export function functionParamsToJSON(functionParams: FunctionParams): string {
|
|
@@ -5389,8 +5175,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5389
5175
|
> = z.object({
|
|
5390
5176
|
_id: z.string(),
|
|
5391
5177
|
description: z.string(),
|
|
5392
|
-
created: z.string().default("2025-11-
|
|
5393
|
-
updated: z.string().default("2025-11-
|
|
5178
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
5179
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
5394
5180
|
guardrail_config: z.union([
|
|
5395
5181
|
z.lazy(() =>
|
|
5396
5182
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5412,7 +5198,6 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5412
5198
|
z.lazy(() => CreateEvalFunctionParams13$inboundSchema),
|
|
5413
5199
|
z.lazy(() => CreateEvalFunctionParams15$inboundSchema),
|
|
5414
5200
|
z.lazy(() => TwentyFive$inboundSchema),
|
|
5415
|
-
z.lazy(() => TwentySix$inboundSchema),
|
|
5416
5201
|
z.lazy(() => CreateEvalFunctionParams5$inboundSchema),
|
|
5417
5202
|
z.lazy(() => CreateEvalFunctionParams6$inboundSchema),
|
|
5418
5203
|
z.lazy(() => CreateEvalFunctionParams7$inboundSchema),
|
|
@@ -5427,15 +5212,13 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5427
5212
|
z.lazy(() => TwentyTwo$inboundSchema),
|
|
5428
5213
|
z.lazy(() => TwentyThree$inboundSchema),
|
|
5429
5214
|
z.lazy(() => TwentyFour$inboundSchema),
|
|
5215
|
+
z.lazy(() => TwentySix$inboundSchema),
|
|
5430
5216
|
z.lazy(() => TwentySeven$inboundSchema),
|
|
5431
5217
|
z.lazy(() => TwentyEight$inboundSchema),
|
|
5432
5218
|
z.lazy(() => TwentyNine$inboundSchema),
|
|
5433
5219
|
z.lazy(() => Thirty$inboundSchema),
|
|
5434
5220
|
z.lazy(() => ThirtyOne$inboundSchema),
|
|
5435
5221
|
z.lazy(() => ThirtyTwo$inboundSchema),
|
|
5436
|
-
z.lazy(() => ThirtyThree$inboundSchema),
|
|
5437
|
-
z.lazy(() => ThirtyFour$inboundSchema),
|
|
5438
|
-
z.lazy(() => ThirtyFive$inboundSchema),
|
|
5439
5222
|
]),
|
|
5440
5223
|
key: z.string(),
|
|
5441
5224
|
}).transform((v) => {
|
|
@@ -5468,7 +5251,6 @@ export type CreateEvalResponseBodyFunction$Outbound = {
|
|
|
5468
5251
|
| CreateEvalFunctionParams13$Outbound
|
|
5469
5252
|
| CreateEvalFunctionParams15$Outbound
|
|
5470
5253
|
| TwentyFive$Outbound
|
|
5471
|
-
| TwentySix$Outbound
|
|
5472
5254
|
| CreateEvalFunctionParams5$Outbound
|
|
5473
5255
|
| CreateEvalFunctionParams6$Outbound
|
|
5474
5256
|
| CreateEvalFunctionParams7$Outbound
|
|
@@ -5483,15 +5265,13 @@ export type CreateEvalResponseBodyFunction$Outbound = {
|
|
|
5483
5265
|
| TwentyTwo$Outbound
|
|
5484
5266
|
| TwentyThree$Outbound
|
|
5485
5267
|
| TwentyFour$Outbound
|
|
5268
|
+
| TwentySix$Outbound
|
|
5486
5269
|
| TwentySeven$Outbound
|
|
5487
5270
|
| TwentyEight$Outbound
|
|
5488
5271
|
| TwentyNine$Outbound
|
|
5489
5272
|
| Thirty$Outbound
|
|
5490
5273
|
| ThirtyOne$Outbound
|
|
5491
|
-
| ThirtyTwo$Outbound
|
|
5492
|
-
| ThirtyThree$Outbound
|
|
5493
|
-
| ThirtyFour$Outbound
|
|
5494
|
-
| ThirtyFive$Outbound;
|
|
5274
|
+
| ThirtyTwo$Outbound;
|
|
5495
5275
|
key: string;
|
|
5496
5276
|
};
|
|
5497
5277
|
|
|
@@ -5503,8 +5283,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5503
5283
|
> = z.object({
|
|
5504
5284
|
id: z.string(),
|
|
5505
5285
|
description: z.string(),
|
|
5506
|
-
created: z.string().default("2025-11-
|
|
5507
|
-
updated: z.string().default("2025-11-
|
|
5286
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
5287
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
5508
5288
|
guardrailConfig: z.union([
|
|
5509
5289
|
z.lazy(() =>
|
|
5510
5290
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5526,7 +5306,6 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5526
5306
|
z.lazy(() => CreateEvalFunctionParams13$outboundSchema),
|
|
5527
5307
|
z.lazy(() => CreateEvalFunctionParams15$outboundSchema),
|
|
5528
5308
|
z.lazy(() => TwentyFive$outboundSchema),
|
|
5529
|
-
z.lazy(() => TwentySix$outboundSchema),
|
|
5530
5309
|
z.lazy(() => CreateEvalFunctionParams5$outboundSchema),
|
|
5531
5310
|
z.lazy(() => CreateEvalFunctionParams6$outboundSchema),
|
|
5532
5311
|
z.lazy(() => CreateEvalFunctionParams7$outboundSchema),
|
|
@@ -5541,15 +5320,13 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5541
5320
|
z.lazy(() => TwentyTwo$outboundSchema),
|
|
5542
5321
|
z.lazy(() => TwentyThree$outboundSchema),
|
|
5543
5322
|
z.lazy(() => TwentyFour$outboundSchema),
|
|
5323
|
+
z.lazy(() => TwentySix$outboundSchema),
|
|
5544
5324
|
z.lazy(() => TwentySeven$outboundSchema),
|
|
5545
5325
|
z.lazy(() => TwentyEight$outboundSchema),
|
|
5546
5326
|
z.lazy(() => TwentyNine$outboundSchema),
|
|
5547
5327
|
z.lazy(() => Thirty$outboundSchema),
|
|
5548
5328
|
z.lazy(() => ThirtyOne$outboundSchema),
|
|
5549
5329
|
z.lazy(() => ThirtyTwo$outboundSchema),
|
|
5550
|
-
z.lazy(() => ThirtyThree$outboundSchema),
|
|
5551
|
-
z.lazy(() => ThirtyFour$outboundSchema),
|
|
5552
|
-
z.lazy(() => ThirtyFive$outboundSchema),
|
|
5553
5330
|
]),
|
|
5554
5331
|
key: z.string(),
|
|
5555
5332
|
}).transform((v) => {
|
|
@@ -5821,8 +5598,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5821
5598
|
> = z.object({
|
|
5822
5599
|
_id: z.string(),
|
|
5823
5600
|
description: z.string(),
|
|
5824
|
-
created: z.string().default("2025-11-
|
|
5825
|
-
updated: z.string().default("2025-11-
|
|
5601
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
5602
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
5826
5603
|
guardrail_config: z.union([
|
|
5827
5604
|
z.lazy(() =>
|
|
5828
5605
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5863,8 +5640,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5863
5640
|
> = z.object({
|
|
5864
5641
|
id: z.string(),
|
|
5865
5642
|
description: z.string(),
|
|
5866
|
-
created: z.string().default("2025-11-
|
|
5867
|
-
updated: z.string().default("2025-11-
|
|
5643
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
5644
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
5868
5645
|
guardrailConfig: z.union([
|
|
5869
5646
|
z.lazy(() =>
|
|
5870
5647
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6144,8 +5921,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6144
5921
|
> = z.object({
|
|
6145
5922
|
_id: z.string(),
|
|
6146
5923
|
description: z.string(),
|
|
6147
|
-
created: z.string().default("2025-11-
|
|
6148
|
-
updated: z.string().default("2025-11-
|
|
5924
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
5925
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
6149
5926
|
guardrail_config: z.union([
|
|
6150
5927
|
z.lazy(() =>
|
|
6151
5928
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6192,8 +5969,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6192
5969
|
> = z.object({
|
|
6193
5970
|
id: z.string(),
|
|
6194
5971
|
description: z.string(),
|
|
6195
|
-
created: z.string().default("2025-11-
|
|
6196
|
-
updated: z.string().default("2025-11-
|
|
5972
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
5973
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
6197
5974
|
guardrailConfig: z.union([
|
|
6198
5975
|
z.lazy(() =>
|
|
6199
5976
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6449,8 +6226,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6449
6226
|
> = z.object({
|
|
6450
6227
|
_id: z.string(),
|
|
6451
6228
|
description: z.string(),
|
|
6452
|
-
created: z.string().default("2025-11-
|
|
6453
|
-
updated: z.string().default("2025-11-
|
|
6229
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
6230
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
6454
6231
|
guardrail_config: z.union([
|
|
6455
6232
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6456
6233
|
z.lazy(() =>
|
|
@@ -6489,8 +6266,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6489
6266
|
> = z.object({
|
|
6490
6267
|
id: z.string(),
|
|
6491
6268
|
description: z.string(),
|
|
6492
|
-
created: z.string().default("2025-11-
|
|
6493
|
-
updated: z.string().default("2025-11-
|
|
6269
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
6270
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
6494
6271
|
guardrailConfig: z.union([
|
|
6495
6272
|
z.lazy(() =>
|
|
6496
6273
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6728,8 +6505,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6728
6505
|
> = z.object({
|
|
6729
6506
|
_id: z.string(),
|
|
6730
6507
|
description: z.string(),
|
|
6731
|
-
created: z.string().default("2025-11-
|
|
6732
|
-
updated: z.string().default("2025-11-
|
|
6508
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
6509
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
6733
6510
|
guardrail_config: z.union([
|
|
6734
6511
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6735
6512
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6768,8 +6545,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6768
6545
|
> = z.object({
|
|
6769
6546
|
id: z.string(),
|
|
6770
6547
|
description: z.string(),
|
|
6771
|
-
created: z.string().default("2025-11-
|
|
6772
|
-
updated: z.string().default("2025-11-
|
|
6548
|
+
created: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
6549
|
+
updated: z.string().default("2025-11-25T13:15:49.850Z"),
|
|
6773
6550
|
guardrailConfig: z.union([
|
|
6774
6551
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6775
6552
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|