@orq-ai/node 3.12.16 → 3.12.19

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 (159) hide show
  1. package/bin/mcp-server.js +112 -112
  2. package/bin/mcp-server.js.map +30 -30
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +3 -3
  6. package/lib/config.js +3 -3
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/operations/createbudget.js +2 -2
  10. package/models/operations/createcontact.js +2 -2
  11. package/models/operations/createdataset.js +2 -2
  12. package/models/operations/createdatasetitem.js +2 -2
  13. package/models/operations/createdatasource.js +2 -2
  14. package/models/operations/createeval.js +16 -16
  15. package/models/operations/fileget.js +2 -2
  16. package/models/operations/filelist.js +2 -2
  17. package/models/operations/fileupload.js +2 -2
  18. package/models/operations/getbudget.js +2 -2
  19. package/models/operations/getevals.js +28 -28
  20. package/models/operations/listbudgets.js +2 -2
  21. package/models/operations/listcontacts.js +2 -2
  22. package/models/operations/listdatasetdatapoints.js +2 -2
  23. package/models/operations/listdatasets.js +2 -2
  24. package/models/operations/listdatasources.js +2 -2
  25. package/models/operations/retrievecontact.js +2 -2
  26. package/models/operations/retrievedatapoint.js +2 -2
  27. package/models/operations/retrievedataset.js +2 -2
  28. package/models/operations/retrievedatasource.js +2 -2
  29. package/models/operations/updatebudget.js +2 -2
  30. package/models/operations/updatecontact.js +2 -2
  31. package/models/operations/updatedatapoint.js +2 -2
  32. package/models/operations/updatedataset.js +2 -2
  33. package/models/operations/updatedatasource.js +2 -2
  34. package/models/operations/updateeval.js +16 -16
  35. package/package.json +1 -1
  36. package/packages/orq-rc/README.md +107 -90
  37. package/packages/orq-rc/docs/sdks/tools/README.md +488 -0
  38. package/packages/orq-rc/examples/package-lock.json +1 -1
  39. package/packages/orq-rc/jsr.json +1 -1
  40. package/packages/orq-rc/package-lock.json +2 -2
  41. package/packages/orq-rc/package.json +1 -1
  42. package/packages/orq-rc/src/funcs/toolsCreate.ts +163 -0
  43. package/packages/orq-rc/src/funcs/toolsDelete.ts +167 -0
  44. package/packages/orq-rc/src/funcs/toolsDuplicate.ts +175 -0
  45. package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
  46. package/packages/orq-rc/src/funcs/toolsRetrieve.ts +166 -0
  47. package/packages/orq-rc/src/funcs/toolsUpdate.ts +176 -0
  48. package/packages/orq-rc/src/lib/config.ts +3 -3
  49. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  50. package/packages/orq-rc/src/mcp-server/server.ts +13 -1
  51. package/packages/orq-rc/src/mcp-server/tools/toolsCreate.ts +37 -0
  52. package/packages/orq-rc/src/mcp-server/tools/toolsDelete.ts +35 -0
  53. package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +37 -0
  54. package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +37 -0
  55. package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +37 -0
  56. package/packages/orq-rc/src/mcp-server/tools/toolsUpdate.ts +37 -0
  57. package/packages/orq-rc/src/models/components/callsubagenttool.ts +109 -0
  58. package/packages/orq-rc/src/models/components/codeexecutiontool.ts +293 -0
  59. package/packages/orq-rc/src/models/components/currentdatetool.ts +107 -0
  60. package/packages/orq-rc/src/models/components/deployments.ts +52 -45
  61. package/packages/orq-rc/src/models/components/functiontool.ts +195 -0
  62. package/packages/orq-rc/src/models/components/googlesearchtool.ts +108 -0
  63. package/packages/orq-rc/src/models/components/httptool.ts +532 -0
  64. package/packages/orq-rc/src/models/components/index.ts +13 -0
  65. package/packages/orq-rc/src/models/components/queryknowledgebasetool.ts +111 -0
  66. package/packages/orq-rc/src/models/components/querymemorystoretool.ts +111 -0
  67. package/packages/orq-rc/src/models/components/retrieveagentstool.ts +109 -0
  68. package/packages/orq-rc/src/models/components/retrieveknowledgebasestool.ts +111 -0
  69. package/packages/orq-rc/src/models/components/retrievememorystorestool.ts +111 -0
  70. package/packages/orq-rc/src/models/components/webscrapertool.ts +105 -0
  71. package/packages/orq-rc/src/models/components/writememorystoretool.ts +111 -0
  72. package/packages/orq-rc/src/models/errors/duplicatetool.ts +91 -0
  73. package/packages/orq-rc/src/models/errors/index.ts +2 -0
  74. package/packages/orq-rc/src/models/errors/updatetool.ts +91 -0
  75. package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
  76. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  77. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  78. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +10 -8
  79. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  80. package/packages/orq-rc/src/models/operations/createeval.ts +60 -56
  81. package/packages/orq-rc/src/models/operations/createknowledge.ts +18 -0
  82. package/packages/orq-rc/src/models/operations/creatememorystore.ts +137 -136
  83. package/packages/orq-rc/src/models/operations/createprompt.ts +631 -314
  84. package/packages/orq-rc/src/models/operations/createtool.ts +4027 -0
  85. package/packages/orq-rc/src/models/operations/deletetool.ts +75 -0
  86. package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +8 -6
  87. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +362 -194
  88. package/packages/orq-rc/src/models/operations/deployments.ts +329 -160
  89. package/packages/orq-rc/src/models/operations/deploymentstream.ts +8 -6
  90. package/packages/orq-rc/src/models/operations/duplicatetool.ts +2311 -0
  91. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  92. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  93. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  94. package/packages/orq-rc/src/models/operations/getagent.ts +10 -10
  95. package/packages/orq-rc/src/models/operations/getallprompts.ts +333 -168
  96. package/packages/orq-rc/src/models/operations/getalltools.ts +2278 -0
  97. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
  98. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  99. package/packages/orq-rc/src/models/operations/getoneknowledge.ts +9 -0
  100. package/packages/orq-rc/src/models/operations/getoneprompt.ts +329 -167
  101. package/packages/orq-rc/src/models/operations/getpromptversion.ts +337 -168
  102. package/packages/orq-rc/src/models/operations/index.ts +6 -0
  103. package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
  104. package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
  105. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  106. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +6 -5
  107. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  108. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  109. package/packages/orq-rc/src/models/operations/listknowledgebases.ts +9 -0
  110. package/packages/orq-rc/src/models/operations/listpromptversions.ts +354 -183
  111. package/packages/orq-rc/src/models/operations/parse.ts +20 -335
  112. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  113. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +6 -5
  114. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  115. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  116. package/packages/orq-rc/src/models/operations/retrievetool.ts +2303 -0
  117. package/packages/orq-rc/src/models/operations/runagent.ts +412 -1375
  118. package/packages/orq-rc/src/models/operations/streamrunagent.ts +399 -1449
  119. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
  120. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  121. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +10 -8
  122. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  123. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  124. package/packages/orq-rc/src/models/operations/updateeval.ts +57 -57
  125. package/packages/orq-rc/src/models/operations/updateknowledge.ts +18 -0
  126. package/packages/orq-rc/src/models/operations/updatememorystore.ts +136 -168
  127. package/packages/orq-rc/src/models/operations/updateprompt.ts +668 -335
  128. package/packages/orq-rc/src/models/operations/updatetool.ts +4231 -0
  129. package/packages/orq-rc/src/sdk/sdk.ts +6 -0
  130. package/packages/orq-rc/src/sdk/tools.ts +117 -0
  131. package/src/lib/config.ts +3 -3
  132. package/src/mcp-server/mcp-server.ts +1 -1
  133. package/src/mcp-server/server.ts +1 -1
  134. package/src/models/operations/createbudget.ts +2 -2
  135. package/src/models/operations/createcontact.ts +2 -2
  136. package/src/models/operations/createdataset.ts +2 -2
  137. package/src/models/operations/createdatasetitem.ts +2 -2
  138. package/src/models/operations/createdatasource.ts +2 -2
  139. package/src/models/operations/createeval.ts +16 -16
  140. package/src/models/operations/fileget.ts +2 -2
  141. package/src/models/operations/filelist.ts +2 -2
  142. package/src/models/operations/fileupload.ts +2 -2
  143. package/src/models/operations/getbudget.ts +2 -2
  144. package/src/models/operations/getevals.ts +28 -28
  145. package/src/models/operations/listbudgets.ts +2 -2
  146. package/src/models/operations/listcontacts.ts +2 -2
  147. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  148. package/src/models/operations/listdatasets.ts +2 -2
  149. package/src/models/operations/listdatasources.ts +2 -2
  150. package/src/models/operations/retrievecontact.ts +2 -2
  151. package/src/models/operations/retrievedatapoint.ts +2 -2
  152. package/src/models/operations/retrievedataset.ts +2 -2
  153. package/src/models/operations/retrievedatasource.ts +2 -2
  154. package/src/models/operations/updatebudget.ts +2 -2
  155. package/src/models/operations/updatecontact.ts +2 -2
  156. package/src/models/operations/updatedatapoint.ts +2 -2
  157. package/src/models/operations/updatedataset.ts +2 -2
  158. package/src/models/operations/updatedatasource.ts +2 -2
  159. package/src/models/operations/updateeval.ts +16 -16
@@ -26,6 +26,10 @@ export type RetrievalType = ClosedEnum<typeof RetrievalType>;
26
26
  * The rerank configuration for the knowledge base. In case the model is provided it will be used to enhance the search precision.
27
27
  */
28
28
  export type RerankConfig = {
29
+ /**
30
+ * The number of results to return by the reranking model
31
+ */
32
+ topK?: number | undefined;
29
33
  /**
30
34
  * The threshold value used to filter the rerank results, only documents with a relevance score greater than the threshold will be returned
31
35
  */
@@ -108,6 +112,10 @@ export type CreateKnowledgeRetrievalType = ClosedEnum<
108
112
  * The rerank configuration for the knowledge base. In case the model is provided it will be used to enhance the search precision.
109
113
  */
110
114
  export type CreateKnowledgeRerankConfig = {
115
+ /**
116
+ * The number of results to return by the reranking model
117
+ */
118
+ topK?: number | undefined;
111
119
  /**
112
120
  * The threshold value used to filter the rerank results, only documents with a relevance score greater than the threshold will be returned
113
121
  */
@@ -225,10 +233,12 @@ export const RerankConfig$inboundSchema: z.ZodType<
225
233
  z.ZodTypeDef,
226
234
  unknown
227
235
  > = z.object({
236
+ top_k: z.number().int().default(5),
228
237
  rerank_threshold: z.number().default(0.5),
229
238
  rerank_model: z.string(),
230
239
  }).transform((v) => {
231
240
  return remap$(v, {
241
+ "top_k": "topK",
232
242
  "rerank_threshold": "rerankThreshold",
233
243
  "rerank_model": "rerankModel",
234
244
  });
@@ -236,6 +246,7 @@ export const RerankConfig$inboundSchema: z.ZodType<
236
246
 
237
247
  /** @internal */
238
248
  export type RerankConfig$Outbound = {
249
+ top_k: number;
239
250
  rerank_threshold: number;
240
251
  rerank_model: string;
241
252
  };
@@ -246,10 +257,12 @@ export const RerankConfig$outboundSchema: z.ZodType<
246
257
  z.ZodTypeDef,
247
258
  RerankConfig
248
259
  > = z.object({
260
+ topK: z.number().int().default(5),
249
261
  rerankThreshold: z.number().default(0.5),
250
262
  rerankModel: z.string(),
251
263
  }).transform((v) => {
252
264
  return remap$(v, {
265
+ topK: "top_k",
253
266
  rerankThreshold: "rerank_threshold",
254
267
  rerankModel: "rerank_model",
255
268
  });
@@ -523,10 +536,12 @@ export const CreateKnowledgeRerankConfig$inboundSchema: z.ZodType<
523
536
  z.ZodTypeDef,
524
537
  unknown
525
538
  > = z.object({
539
+ top_k: z.number().int().default(5),
526
540
  rerank_threshold: z.number().default(0.5),
527
541
  rerank_model: z.string(),
528
542
  }).transform((v) => {
529
543
  return remap$(v, {
544
+ "top_k": "topK",
530
545
  "rerank_threshold": "rerankThreshold",
531
546
  "rerank_model": "rerankModel",
532
547
  });
@@ -534,6 +549,7 @@ export const CreateKnowledgeRerankConfig$inboundSchema: z.ZodType<
534
549
 
535
550
  /** @internal */
536
551
  export type CreateKnowledgeRerankConfig$Outbound = {
552
+ top_k: number;
537
553
  rerank_threshold: number;
538
554
  rerank_model: string;
539
555
  };
@@ -544,10 +560,12 @@ export const CreateKnowledgeRerankConfig$outboundSchema: z.ZodType<
544
560
  z.ZodTypeDef,
545
561
  CreateKnowledgeRerankConfig
546
562
  > = z.object({
563
+ topK: z.number().int().default(5),
547
564
  rerankThreshold: z.number().default(0.5),
548
565
  rerankModel: z.string(),
549
566
  }).transform((v) => {
550
567
  return remap$(v, {
568
+ topK: "top_k",
551
569
  rerankThreshold: "rerank_threshold",
552
570
  rerankModel: "rerank_model",
553
571
  });
@@ -54,45 +54,45 @@ export const Fourteen = {
54
54
  } as const;
55
55
  export type Fourteen = ClosedEnum<typeof Fourteen>;
56
56
 
57
- export const Model13 = {
57
+ export const Thirteen = {
58
58
  GoogleMultimodalembeddingAt001: "google/multimodalembedding@001",
59
59
  } as const;
60
- export type Model13 = ClosedEnum<typeof Model13>;
60
+ export type Thirteen = ClosedEnum<typeof Thirteen>;
61
61
 
62
- export const Model12 = {
62
+ export const Twelve = {
63
63
  GoogleTextMultilingualEmbedding002: "google/text-multilingual-embedding-002",
64
64
  } as const;
65
- export type Model12 = ClosedEnum<typeof Model12>;
65
+ export type Twelve = ClosedEnum<typeof Twelve>;
66
66
 
67
- export const Model11 = {
67
+ export const Eleven = {
68
68
  GoogleTextEmbedding005: "google/text-embedding-005",
69
69
  } as const;
70
- export type Model11 = ClosedEnum<typeof Model11>;
70
+ export type Eleven = ClosedEnum<typeof Eleven>;
71
71
 
72
- export const Model10 = {
72
+ export const Ten = {
73
73
  GoogleGeminiEmbedding001: "google/gemini-embedding-001",
74
74
  } as const;
75
- export type Model10 = ClosedEnum<typeof Model10>;
75
+ export type Ten = ClosedEnum<typeof Ten>;
76
76
 
77
- export const Model9 = {
77
+ export const Nine = {
78
78
  OpenaiTextEmbeddingAda002: "openai/text-embedding-ada-002",
79
79
  } as const;
80
- export type Model9 = ClosedEnum<typeof Model9>;
80
+ export type Nine = ClosedEnum<typeof Nine>;
81
81
 
82
- export const Model8 = {
82
+ export const Eight = {
83
83
  OpenaiTextEmbedding3Small: "openai/text-embedding-3-small",
84
84
  } as const;
85
- export type Model8 = ClosedEnum<typeof Model8>;
85
+ export type Eight = ClosedEnum<typeof Eight>;
86
86
 
87
- export const Model7 = {
87
+ export const Seven = {
88
88
  OpenaiTextEmbedding3Large: "openai/text-embedding-3-large",
89
89
  } as const;
90
- export type Model7 = ClosedEnum<typeof Model7>;
90
+ export type Seven = ClosedEnum<typeof Seven>;
91
91
 
92
- export const Model6 = {
92
+ export const Six = {
93
93
  AzureTextEmbedding3Small: "azure/text-embedding-3-small",
94
94
  } as const;
95
- export type Model6 = ClosedEnum<typeof Model6>;
95
+ export type Six = ClosedEnum<typeof Six>;
96
96
 
97
97
  export const Model5 = {
98
98
  AzureTextEmbeddingAda002: "azure/text-embedding-ada-002",
@@ -125,14 +125,14 @@ export type Model =
125
125
  | Model3
126
126
  | Model4
127
127
  | Model5
128
- | Model6
129
- | Model7
130
- | Model8
131
- | Model9
132
- | Model10
133
- | Model11
134
- | Model12
135
- | Model13
128
+ | Six
129
+ | Seven
130
+ | Eight
131
+ | Nine
132
+ | Ten
133
+ | Eleven
134
+ | Twelve
135
+ | Thirteen
136
136
  | Fourteen
137
137
  | Fifteen
138
138
  | Sixteen
@@ -150,14 +150,14 @@ export type EmbeddingConfig = {
150
150
  | Model3
151
151
  | Model4
152
152
  | Model5
153
- | Model6
154
- | Model7
155
- | Model8
156
- | Model9
157
- | Model10
158
- | Model11
159
- | Model12
160
- | Model13
153
+ | Six
154
+ | Seven
155
+ | Eight
156
+ | Nine
157
+ | Ten
158
+ | Eleven
159
+ | Twelve
160
+ | Thirteen
161
161
  | Fourteen
162
162
  | Fifteen
163
163
  | Sixteen
@@ -604,155 +604,156 @@ export namespace Fourteen$ {
604
604
  }
605
605
 
606
606
  /** @internal */
607
- export const Model13$inboundSchema: z.ZodNativeEnum<typeof Model13> = z
608
- .nativeEnum(Model13);
607
+ export const Thirteen$inboundSchema: z.ZodNativeEnum<typeof Thirteen> = z
608
+ .nativeEnum(Thirteen);
609
609
 
610
610
  /** @internal */
611
- export const Model13$outboundSchema: z.ZodNativeEnum<typeof Model13> =
612
- Model13$inboundSchema;
611
+ export const Thirteen$outboundSchema: z.ZodNativeEnum<typeof Thirteen> =
612
+ Thirteen$inboundSchema;
613
613
 
614
614
  /**
615
615
  * @internal
616
616
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
617
617
  */
618
- export namespace Model13$ {
619
- /** @deprecated use `Model13$inboundSchema` instead. */
620
- export const inboundSchema = Model13$inboundSchema;
621
- /** @deprecated use `Model13$outboundSchema` instead. */
622
- export const outboundSchema = Model13$outboundSchema;
618
+ export namespace Thirteen$ {
619
+ /** @deprecated use `Thirteen$inboundSchema` instead. */
620
+ export const inboundSchema = Thirteen$inboundSchema;
621
+ /** @deprecated use `Thirteen$outboundSchema` instead. */
622
+ export const outboundSchema = Thirteen$outboundSchema;
623
623
  }
624
624
 
625
625
  /** @internal */
626
- export const Model12$inboundSchema: z.ZodNativeEnum<typeof Model12> = z
627
- .nativeEnum(Model12);
626
+ export const Twelve$inboundSchema: z.ZodNativeEnum<typeof Twelve> = z
627
+ .nativeEnum(Twelve);
628
628
 
629
629
  /** @internal */
630
- export const Model12$outboundSchema: z.ZodNativeEnum<typeof Model12> =
631
- Model12$inboundSchema;
630
+ export const Twelve$outboundSchema: z.ZodNativeEnum<typeof Twelve> =
631
+ Twelve$inboundSchema;
632
632
 
633
633
  /**
634
634
  * @internal
635
635
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
636
636
  */
637
- export namespace Model12$ {
638
- /** @deprecated use `Model12$inboundSchema` instead. */
639
- export const inboundSchema = Model12$inboundSchema;
640
- /** @deprecated use `Model12$outboundSchema` instead. */
641
- export const outboundSchema = Model12$outboundSchema;
637
+ export namespace Twelve$ {
638
+ /** @deprecated use `Twelve$inboundSchema` instead. */
639
+ export const inboundSchema = Twelve$inboundSchema;
640
+ /** @deprecated use `Twelve$outboundSchema` instead. */
641
+ export const outboundSchema = Twelve$outboundSchema;
642
642
  }
643
643
 
644
644
  /** @internal */
645
- export const Model11$inboundSchema: z.ZodNativeEnum<typeof Model11> = z
646
- .nativeEnum(Model11);
645
+ export const Eleven$inboundSchema: z.ZodNativeEnum<typeof Eleven> = z
646
+ .nativeEnum(Eleven);
647
647
 
648
648
  /** @internal */
649
- export const Model11$outboundSchema: z.ZodNativeEnum<typeof Model11> =
650
- Model11$inboundSchema;
649
+ export const Eleven$outboundSchema: z.ZodNativeEnum<typeof Eleven> =
650
+ Eleven$inboundSchema;
651
651
 
652
652
  /**
653
653
  * @internal
654
654
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
655
655
  */
656
- export namespace Model11$ {
657
- /** @deprecated use `Model11$inboundSchema` instead. */
658
- export const inboundSchema = Model11$inboundSchema;
659
- /** @deprecated use `Model11$outboundSchema` instead. */
660
- export const outboundSchema = Model11$outboundSchema;
656
+ export namespace Eleven$ {
657
+ /** @deprecated use `Eleven$inboundSchema` instead. */
658
+ export const inboundSchema = Eleven$inboundSchema;
659
+ /** @deprecated use `Eleven$outboundSchema` instead. */
660
+ export const outboundSchema = Eleven$outboundSchema;
661
661
  }
662
662
 
663
663
  /** @internal */
664
- export const Model10$inboundSchema: z.ZodNativeEnum<typeof Model10> = z
665
- .nativeEnum(Model10);
664
+ export const Ten$inboundSchema: z.ZodNativeEnum<typeof Ten> = z.nativeEnum(Ten);
666
665
 
667
666
  /** @internal */
668
- export const Model10$outboundSchema: z.ZodNativeEnum<typeof Model10> =
669
- Model10$inboundSchema;
667
+ export const Ten$outboundSchema: z.ZodNativeEnum<typeof Ten> =
668
+ Ten$inboundSchema;
670
669
 
671
670
  /**
672
671
  * @internal
673
672
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
674
673
  */
675
- export namespace Model10$ {
676
- /** @deprecated use `Model10$inboundSchema` instead. */
677
- export const inboundSchema = Model10$inboundSchema;
678
- /** @deprecated use `Model10$outboundSchema` instead. */
679
- export const outboundSchema = Model10$outboundSchema;
674
+ export namespace Ten$ {
675
+ /** @deprecated use `Ten$inboundSchema` instead. */
676
+ export const inboundSchema = Ten$inboundSchema;
677
+ /** @deprecated use `Ten$outboundSchema` instead. */
678
+ export const outboundSchema = Ten$outboundSchema;
680
679
  }
681
680
 
682
681
  /** @internal */
683
- export const Model9$inboundSchema: z.ZodNativeEnum<typeof Model9> = z
684
- .nativeEnum(Model9);
682
+ export const Nine$inboundSchema: z.ZodNativeEnum<typeof Nine> = z.nativeEnum(
683
+ Nine,
684
+ );
685
685
 
686
686
  /** @internal */
687
- export const Model9$outboundSchema: z.ZodNativeEnum<typeof Model9> =
688
- Model9$inboundSchema;
687
+ export const Nine$outboundSchema: z.ZodNativeEnum<typeof Nine> =
688
+ Nine$inboundSchema;
689
689
 
690
690
  /**
691
691
  * @internal
692
692
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
693
693
  */
694
- export namespace Model9$ {
695
- /** @deprecated use `Model9$inboundSchema` instead. */
696
- export const inboundSchema = Model9$inboundSchema;
697
- /** @deprecated use `Model9$outboundSchema` instead. */
698
- export const outboundSchema = Model9$outboundSchema;
694
+ export namespace Nine$ {
695
+ /** @deprecated use `Nine$inboundSchema` instead. */
696
+ export const inboundSchema = Nine$inboundSchema;
697
+ /** @deprecated use `Nine$outboundSchema` instead. */
698
+ export const outboundSchema = Nine$outboundSchema;
699
699
  }
700
700
 
701
701
  /** @internal */
702
- export const Model8$inboundSchema: z.ZodNativeEnum<typeof Model8> = z
703
- .nativeEnum(Model8);
702
+ export const Eight$inboundSchema: z.ZodNativeEnum<typeof Eight> = z.nativeEnum(
703
+ Eight,
704
+ );
704
705
 
705
706
  /** @internal */
706
- export const Model8$outboundSchema: z.ZodNativeEnum<typeof Model8> =
707
- Model8$inboundSchema;
707
+ export const Eight$outboundSchema: z.ZodNativeEnum<typeof Eight> =
708
+ Eight$inboundSchema;
708
709
 
709
710
  /**
710
711
  * @internal
711
712
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
712
713
  */
713
- export namespace Model8$ {
714
- /** @deprecated use `Model8$inboundSchema` instead. */
715
- export const inboundSchema = Model8$inboundSchema;
716
- /** @deprecated use `Model8$outboundSchema` instead. */
717
- export const outboundSchema = Model8$outboundSchema;
714
+ export namespace Eight$ {
715
+ /** @deprecated use `Eight$inboundSchema` instead. */
716
+ export const inboundSchema = Eight$inboundSchema;
717
+ /** @deprecated use `Eight$outboundSchema` instead. */
718
+ export const outboundSchema = Eight$outboundSchema;
718
719
  }
719
720
 
720
721
  /** @internal */
721
- export const Model7$inboundSchema: z.ZodNativeEnum<typeof Model7> = z
722
- .nativeEnum(Model7);
722
+ export const Seven$inboundSchema: z.ZodNativeEnum<typeof Seven> = z.nativeEnum(
723
+ Seven,
724
+ );
723
725
 
724
726
  /** @internal */
725
- export const Model7$outboundSchema: z.ZodNativeEnum<typeof Model7> =
726
- Model7$inboundSchema;
727
+ export const Seven$outboundSchema: z.ZodNativeEnum<typeof Seven> =
728
+ Seven$inboundSchema;
727
729
 
728
730
  /**
729
731
  * @internal
730
732
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
731
733
  */
732
- export namespace Model7$ {
733
- /** @deprecated use `Model7$inboundSchema` instead. */
734
- export const inboundSchema = Model7$inboundSchema;
735
- /** @deprecated use `Model7$outboundSchema` instead. */
736
- export const outboundSchema = Model7$outboundSchema;
734
+ export namespace Seven$ {
735
+ /** @deprecated use `Seven$inboundSchema` instead. */
736
+ export const inboundSchema = Seven$inboundSchema;
737
+ /** @deprecated use `Seven$outboundSchema` instead. */
738
+ export const outboundSchema = Seven$outboundSchema;
737
739
  }
738
740
 
739
741
  /** @internal */
740
- export const Model6$inboundSchema: z.ZodNativeEnum<typeof Model6> = z
741
- .nativeEnum(Model6);
742
+ export const Six$inboundSchema: z.ZodNativeEnum<typeof Six> = z.nativeEnum(Six);
742
743
 
743
744
  /** @internal */
744
- export const Model6$outboundSchema: z.ZodNativeEnum<typeof Model6> =
745
- Model6$inboundSchema;
745
+ export const Six$outboundSchema: z.ZodNativeEnum<typeof Six> =
746
+ Six$inboundSchema;
746
747
 
747
748
  /**
748
749
  * @internal
749
750
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
750
751
  */
751
- export namespace Model6$ {
752
- /** @deprecated use `Model6$inboundSchema` instead. */
753
- export const inboundSchema = Model6$inboundSchema;
754
- /** @deprecated use `Model6$outboundSchema` instead. */
755
- export const outboundSchema = Model6$outboundSchema;
752
+ export namespace Six$ {
753
+ /** @deprecated use `Six$inboundSchema` instead. */
754
+ export const inboundSchema = Six$inboundSchema;
755
+ /** @deprecated use `Six$outboundSchema` instead. */
756
+ export const outboundSchema = Six$outboundSchema;
756
757
  }
757
758
 
758
759
  /** @internal */
@@ -858,14 +859,14 @@ export const Model$inboundSchema: z.ZodType<Model, z.ZodTypeDef, unknown> = z
858
859
  Model3$inboundSchema,
859
860
  Model4$inboundSchema,
860
861
  Model5$inboundSchema,
861
- Model6$inboundSchema,
862
- Model7$inboundSchema,
863
- Model8$inboundSchema,
864
- Model9$inboundSchema,
865
- Model10$inboundSchema,
866
- Model11$inboundSchema,
867
- Model12$inboundSchema,
868
- Model13$inboundSchema,
862
+ Six$inboundSchema,
863
+ Seven$inboundSchema,
864
+ Eight$inboundSchema,
865
+ Nine$inboundSchema,
866
+ Ten$inboundSchema,
867
+ Eleven$inboundSchema,
868
+ Twelve$inboundSchema,
869
+ Thirteen$inboundSchema,
869
870
  Fourteen$inboundSchema,
870
871
  Fifteen$inboundSchema,
871
872
  Sixteen$inboundSchema,
@@ -913,14 +914,14 @@ export const Model$outboundSchema: z.ZodType<
913
914
  Model3$outboundSchema,
914
915
  Model4$outboundSchema,
915
916
  Model5$outboundSchema,
916
- Model6$outboundSchema,
917
- Model7$outboundSchema,
918
- Model8$outboundSchema,
919
- Model9$outboundSchema,
920
- Model10$outboundSchema,
921
- Model11$outboundSchema,
922
- Model12$outboundSchema,
923
- Model13$outboundSchema,
917
+ Six$outboundSchema,
918
+ Seven$outboundSchema,
919
+ Eight$outboundSchema,
920
+ Nine$outboundSchema,
921
+ Ten$outboundSchema,
922
+ Eleven$outboundSchema,
923
+ Twelve$outboundSchema,
924
+ Thirteen$outboundSchema,
924
925
  Fourteen$outboundSchema,
925
926
  Fifteen$outboundSchema,
926
927
  Sixteen$outboundSchema,
@@ -971,14 +972,14 @@ export const EmbeddingConfig$inboundSchema: z.ZodType<
971
972
  Model3$inboundSchema,
972
973
  Model4$inboundSchema,
973
974
  Model5$inboundSchema,
974
- Model6$inboundSchema,
975
- Model7$inboundSchema,
976
- Model8$inboundSchema,
977
- Model9$inboundSchema,
978
- Model10$inboundSchema,
979
- Model11$inboundSchema,
980
- Model12$inboundSchema,
981
- Model13$inboundSchema,
975
+ Six$inboundSchema,
976
+ Seven$inboundSchema,
977
+ Eight$inboundSchema,
978
+ Nine$inboundSchema,
979
+ Ten$inboundSchema,
980
+ Eleven$inboundSchema,
981
+ Twelve$inboundSchema,
982
+ Thirteen$inboundSchema,
982
983
  Fourteen$inboundSchema,
983
984
  Fifteen$inboundSchema,
984
985
  Sixteen$inboundSchema,
@@ -1030,14 +1031,14 @@ export const EmbeddingConfig$outboundSchema: z.ZodType<
1030
1031
  Model3$outboundSchema,
1031
1032
  Model4$outboundSchema,
1032
1033
  Model5$outboundSchema,
1033
- Model6$outboundSchema,
1034
- Model7$outboundSchema,
1035
- Model8$outboundSchema,
1036
- Model9$outboundSchema,
1037
- Model10$outboundSchema,
1038
- Model11$outboundSchema,
1039
- Model12$outboundSchema,
1040
- Model13$outboundSchema,
1034
+ Six$outboundSchema,
1035
+ Seven$outboundSchema,
1036
+ Eight$outboundSchema,
1037
+ Nine$outboundSchema,
1038
+ Ten$outboundSchema,
1039
+ Eleven$outboundSchema,
1040
+ Twelve$outboundSchema,
1041
+ Thirteen$outboundSchema,
1041
1042
  Fourteen$outboundSchema,
1042
1043
  Fifteen$outboundSchema,
1043
1044
  Sixteen$outboundSchema,