@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.
- package/bin/mcp-server.js +112 -112
- package/bin/mcp-server.js.map +30 -30
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- 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 +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/README.md +107 -90
- package/packages/orq-rc/docs/sdks/tools/README.md +488 -0
- 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/funcs/toolsCreate.ts +163 -0
- package/packages/orq-rc/src/funcs/toolsDelete.ts +167 -0
- package/packages/orq-rc/src/funcs/toolsDuplicate.ts +175 -0
- package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
- package/packages/orq-rc/src/funcs/toolsRetrieve.ts +166 -0
- package/packages/orq-rc/src/funcs/toolsUpdate.ts +176 -0
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +13 -1
- package/packages/orq-rc/src/mcp-server/tools/toolsCreate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsDelete.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsUpdate.ts +37 -0
- package/packages/orq-rc/src/models/components/callsubagenttool.ts +109 -0
- package/packages/orq-rc/src/models/components/codeexecutiontool.ts +293 -0
- package/packages/orq-rc/src/models/components/currentdatetool.ts +107 -0
- package/packages/orq-rc/src/models/components/deployments.ts +52 -45
- package/packages/orq-rc/src/models/components/functiontool.ts +195 -0
- package/packages/orq-rc/src/models/components/googlesearchtool.ts +108 -0
- package/packages/orq-rc/src/models/components/httptool.ts +532 -0
- package/packages/orq-rc/src/models/components/index.ts +13 -0
- package/packages/orq-rc/src/models/components/queryknowledgebasetool.ts +111 -0
- package/packages/orq-rc/src/models/components/querymemorystoretool.ts +111 -0
- package/packages/orq-rc/src/models/components/retrieveagentstool.ts +109 -0
- package/packages/orq-rc/src/models/components/retrieveknowledgebasestool.ts +111 -0
- package/packages/orq-rc/src/models/components/retrievememorystorestool.ts +111 -0
- package/packages/orq-rc/src/models/components/webscrapertool.ts +105 -0
- package/packages/orq-rc/src/models/components/writememorystoretool.ts +111 -0
- package/packages/orq-rc/src/models/errors/duplicatetool.ts +91 -0
- package/packages/orq-rc/src/models/errors/index.ts +2 -0
- package/packages/orq-rc/src/models/errors/updatetool.ts +91 -0
- 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 +10 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +60 -56
- package/packages/orq-rc/src/models/operations/createknowledge.ts +18 -0
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +137 -136
- package/packages/orq-rc/src/models/operations/createprompt.ts +631 -314
- package/packages/orq-rc/src/models/operations/createtool.ts +4027 -0
- package/packages/orq-rc/src/models/operations/deletetool.ts +75 -0
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +8 -6
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +362 -194
- package/packages/orq-rc/src/models/operations/deployments.ts +329 -160
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +8 -6
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +2311 -0
- 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/getagent.ts +10 -10
- package/packages/orq-rc/src/models/operations/getallprompts.ts +333 -168
- package/packages/orq-rc/src/models/operations/getalltools.ts +2278 -0
- 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/getoneknowledge.ts +9 -0
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +329 -167
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +337 -168
- package/packages/orq-rc/src/models/operations/index.ts +6 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
- 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 +6 -5
- 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/listknowledgebases.ts +9 -0
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +354 -183
- package/packages/orq-rc/src/models/operations/parse.ts +20 -335
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +6 -5
- 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 +2303 -0
- package/packages/orq-rc/src/models/operations/runagent.ts +412 -1375
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +399 -1449
- 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 +10 -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 +57 -57
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +18 -0
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +136 -168
- package/packages/orq-rc/src/models/operations/updateprompt.ts +668 -335
- package/packages/orq-rc/src/models/operations/updatetool.ts +4231 -0
- package/packages/orq-rc/src/sdk/sdk.ts +6 -0
- package/packages/orq-rc/src/sdk/tools.ts +117 -0
- package/src/lib/config.ts +3 -3
- 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 +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- 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/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
|
@@ -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
|
|
57
|
+
export const Thirteen = {
|
|
58
58
|
GoogleMultimodalembeddingAt001: "google/multimodalembedding@001",
|
|
59
59
|
} as const;
|
|
60
|
-
export type
|
|
60
|
+
export type Thirteen = ClosedEnum<typeof Thirteen>;
|
|
61
61
|
|
|
62
|
-
export const
|
|
62
|
+
export const Twelve = {
|
|
63
63
|
GoogleTextMultilingualEmbedding002: "google/text-multilingual-embedding-002",
|
|
64
64
|
} as const;
|
|
65
|
-
export type
|
|
65
|
+
export type Twelve = ClosedEnum<typeof Twelve>;
|
|
66
66
|
|
|
67
|
-
export const
|
|
67
|
+
export const Eleven = {
|
|
68
68
|
GoogleTextEmbedding005: "google/text-embedding-005",
|
|
69
69
|
} as const;
|
|
70
|
-
export type
|
|
70
|
+
export type Eleven = ClosedEnum<typeof Eleven>;
|
|
71
71
|
|
|
72
|
-
export const
|
|
72
|
+
export const Ten = {
|
|
73
73
|
GoogleGeminiEmbedding001: "google/gemini-embedding-001",
|
|
74
74
|
} as const;
|
|
75
|
-
export type
|
|
75
|
+
export type Ten = ClosedEnum<typeof Ten>;
|
|
76
76
|
|
|
77
|
-
export const
|
|
77
|
+
export const Nine = {
|
|
78
78
|
OpenaiTextEmbeddingAda002: "openai/text-embedding-ada-002",
|
|
79
79
|
} as const;
|
|
80
|
-
export type
|
|
80
|
+
export type Nine = ClosedEnum<typeof Nine>;
|
|
81
81
|
|
|
82
|
-
export const
|
|
82
|
+
export const Eight = {
|
|
83
83
|
OpenaiTextEmbedding3Small: "openai/text-embedding-3-small",
|
|
84
84
|
} as const;
|
|
85
|
-
export type
|
|
85
|
+
export type Eight = ClosedEnum<typeof Eight>;
|
|
86
86
|
|
|
87
|
-
export const
|
|
87
|
+
export const Seven = {
|
|
88
88
|
OpenaiTextEmbedding3Large: "openai/text-embedding-3-large",
|
|
89
89
|
} as const;
|
|
90
|
-
export type
|
|
90
|
+
export type Seven = ClosedEnum<typeof Seven>;
|
|
91
91
|
|
|
92
|
-
export const
|
|
92
|
+
export const Six = {
|
|
93
93
|
AzureTextEmbedding3Small: "azure/text-embedding-3-small",
|
|
94
94
|
} as const;
|
|
95
|
-
export type
|
|
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
|
-
|
|
|
129
|
-
|
|
|
130
|
-
|
|
|
131
|
-
|
|
|
132
|
-
|
|
|
133
|
-
|
|
|
134
|
-
|
|
|
135
|
-
|
|
|
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
|
-
|
|
|
154
|
-
|
|
|
155
|
-
|
|
|
156
|
-
|
|
|
157
|
-
|
|
|
158
|
-
|
|
|
159
|
-
|
|
|
160
|
-
|
|
|
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
|
|
608
|
-
.nativeEnum(
|
|
607
|
+
export const Thirteen$inboundSchema: z.ZodNativeEnum<typeof Thirteen> = z
|
|
608
|
+
.nativeEnum(Thirteen);
|
|
609
609
|
|
|
610
610
|
/** @internal */
|
|
611
|
-
export const
|
|
612
|
-
|
|
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
|
|
619
|
-
/** @deprecated use `
|
|
620
|
-
export const inboundSchema =
|
|
621
|
-
/** @deprecated use `
|
|
622
|
-
export const 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
|
|
627
|
-
.nativeEnum(
|
|
626
|
+
export const Twelve$inboundSchema: z.ZodNativeEnum<typeof Twelve> = z
|
|
627
|
+
.nativeEnum(Twelve);
|
|
628
628
|
|
|
629
629
|
/** @internal */
|
|
630
|
-
export const
|
|
631
|
-
|
|
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
|
|
638
|
-
/** @deprecated use `
|
|
639
|
-
export const inboundSchema =
|
|
640
|
-
/** @deprecated use `
|
|
641
|
-
export const 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
|
|
646
|
-
.nativeEnum(
|
|
645
|
+
export const Eleven$inboundSchema: z.ZodNativeEnum<typeof Eleven> = z
|
|
646
|
+
.nativeEnum(Eleven);
|
|
647
647
|
|
|
648
648
|
/** @internal */
|
|
649
|
-
export const
|
|
650
|
-
|
|
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
|
|
657
|
-
/** @deprecated use `
|
|
658
|
-
export const inboundSchema =
|
|
659
|
-
/** @deprecated use `
|
|
660
|
-
export const 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
|
|
665
|
-
.nativeEnum(Model10);
|
|
664
|
+
export const Ten$inboundSchema: z.ZodNativeEnum<typeof Ten> = z.nativeEnum(Ten);
|
|
666
665
|
|
|
667
666
|
/** @internal */
|
|
668
|
-
export const
|
|
669
|
-
|
|
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
|
|
676
|
-
/** @deprecated use `
|
|
677
|
-
export const inboundSchema =
|
|
678
|
-
/** @deprecated use `
|
|
679
|
-
export const 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
|
|
684
|
-
|
|
682
|
+
export const Nine$inboundSchema: z.ZodNativeEnum<typeof Nine> = z.nativeEnum(
|
|
683
|
+
Nine,
|
|
684
|
+
);
|
|
685
685
|
|
|
686
686
|
/** @internal */
|
|
687
|
-
export const
|
|
688
|
-
|
|
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
|
|
695
|
-
/** @deprecated use `
|
|
696
|
-
export const inboundSchema =
|
|
697
|
-
/** @deprecated use `
|
|
698
|
-
export const 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
|
|
703
|
-
|
|
702
|
+
export const Eight$inboundSchema: z.ZodNativeEnum<typeof Eight> = z.nativeEnum(
|
|
703
|
+
Eight,
|
|
704
|
+
);
|
|
704
705
|
|
|
705
706
|
/** @internal */
|
|
706
|
-
export const
|
|
707
|
-
|
|
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
|
|
714
|
-
/** @deprecated use `
|
|
715
|
-
export const inboundSchema =
|
|
716
|
-
/** @deprecated use `
|
|
717
|
-
export const 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
|
|
722
|
-
|
|
722
|
+
export const Seven$inboundSchema: z.ZodNativeEnum<typeof Seven> = z.nativeEnum(
|
|
723
|
+
Seven,
|
|
724
|
+
);
|
|
723
725
|
|
|
724
726
|
/** @internal */
|
|
725
|
-
export const
|
|
726
|
-
|
|
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
|
|
733
|
-
/** @deprecated use `
|
|
734
|
-
export const inboundSchema =
|
|
735
|
-
/** @deprecated use `
|
|
736
|
-
export const 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
|
|
741
|
-
.nativeEnum(Model6);
|
|
742
|
+
export const Six$inboundSchema: z.ZodNativeEnum<typeof Six> = z.nativeEnum(Six);
|
|
742
743
|
|
|
743
744
|
/** @internal */
|
|
744
|
-
export const
|
|
745
|
-
|
|
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
|
|
752
|
-
/** @deprecated use `
|
|
753
|
-
export const inboundSchema =
|
|
754
|
-
/** @deprecated use `
|
|
755
|
-
export const 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
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
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
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
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
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
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
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
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,
|