@mastra/server 1.15.0-alpha.4 → 1.16.0-alpha.0
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/CHANGELOG.md +39 -0
- package/dist/_types/@internal_core/dist/index.d.ts +7 -0
- package/dist/{chunk-5N4O5XJZ.js → chunk-7LQDR5AI.js} +84 -8
- package/dist/chunk-7LQDR5AI.js.map +1 -0
- package/dist/{chunk-M2PIFW7O.cjs → chunk-AOAIJJY6.cjs} +331 -58
- package/dist/chunk-AOAIJJY6.cjs.map +1 -0
- package/dist/{chunk-47RDD2HN.js → chunk-APJA4LIB.js} +4 -3
- package/dist/chunk-APJA4LIB.js.map +1 -0
- package/dist/{chunk-7D3YBNO6.cjs → chunk-FOHX5HVN.cjs} +4 -3
- package/dist/chunk-FOHX5HVN.cjs.map +1 -0
- package/dist/{chunk-2SQXNXDG.cjs → chunk-FXX6WI5F.cjs} +6 -3
- package/dist/chunk-FXX6WI5F.cjs.map +1 -0
- package/dist/{chunk-NDI2C7UD.js → chunk-I3QRIKI5.js} +279 -9
- package/dist/chunk-I3QRIKI5.js.map +1 -0
- package/dist/{chunk-3KRZUGE2.cjs → chunk-LG2MUCSW.cjs} +22 -19
- package/dist/chunk-LG2MUCSW.cjs.map +1 -0
- package/dist/{chunk-XJ4C64FH.cjs → chunk-MPXNKSVP.cjs} +21 -21
- package/dist/{chunk-XJ4C64FH.cjs.map → chunk-MPXNKSVP.cjs.map} +1 -1
- package/dist/{chunk-KTKTSTDR.cjs → chunk-N5RFB7A4.cjs} +89 -7
- package/dist/chunk-N5RFB7A4.cjs.map +1 -0
- package/dist/{chunk-BN5YN4UU.js → chunk-R344LGXP.js} +9 -6
- package/dist/chunk-R344LGXP.js.map +1 -0
- package/dist/{chunk-H37CMPNZ.js → chunk-UYAZFEAW.js} +6 -3
- package/dist/chunk-UYAZFEAW.js.map +1 -0
- package/dist/{chunk-EYPXYWPY.js → chunk-Y452XTPZ.js} +3 -3
- package/dist/{chunk-EYPXYWPY.js.map → chunk-Y452XTPZ.js.map} +1 -1
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/dist/server/handlers/datasets.cjs +33 -21
- package/dist/server/handlers/datasets.d.ts +808 -472
- package/dist/server/handlers/datasets.d.ts.map +1 -1
- package/dist/server/handlers/datasets.js +1 -1
- package/dist/server/handlers/observability-new-endpoints.cjs +19 -19
- package/dist/server/handlers/observability-new-endpoints.d.ts +8 -0
- package/dist/server/handlers/observability-new-endpoints.d.ts.map +1 -1
- package/dist/server/handlers/observability-new-endpoints.js +1 -1
- package/dist/server/handlers/observability.cjs +24 -24
- package/dist/server/handlers/observability.js +2 -2
- package/dist/server/handlers/scores.cjs +7 -7
- package/dist/server/handlers/scores.d.ts +10 -0
- package/dist/server/handlers/scores.d.ts.map +1 -1
- package/dist/server/handlers/scores.js +1 -1
- package/dist/server/handlers.cjs +4 -4
- package/dist/server/handlers.js +2 -2
- package/dist/server/schemas/datasets.d.ts +138 -0
- package/dist/server/schemas/datasets.d.ts.map +1 -1
- package/dist/server/schemas/index.cjs +69 -45
- package/dist/server/schemas/index.js +2 -2
- package/dist/server/schemas/scores.d.ts +8 -0
- package/dist/server/schemas/scores.d.ts.map +1 -1
- package/dist/server/server-adapter/index.cjs +56 -51
- package/dist/server/server-adapter/index.cjs.map +1 -1
- package/dist/server/server-adapter/index.js +10 -5
- package/dist/server/server-adapter/index.js.map +1 -1
- package/dist/server/server-adapter/routes/datasets.d.ts +333 -1
- package/dist/server/server-adapter/routes/datasets.d.ts.map +1 -1
- package/dist/server/server-adapter/routes/observability.d.ts +4 -0
- package/dist/server/server-adapter/routes/observability.d.ts.map +1 -1
- package/dist/server/server-adapter/routes/scorers.d.ts +10 -0
- package/dist/server/server-adapter/routes/scorers.d.ts.map +1 -1
- package/package.json +9 -9
- package/dist/chunk-2SQXNXDG.cjs.map +0 -1
- package/dist/chunk-3KRZUGE2.cjs.map +0 -1
- package/dist/chunk-47RDD2HN.js.map +0 -1
- package/dist/chunk-5N4O5XJZ.js.map +0 -1
- package/dist/chunk-7D3YBNO6.cjs.map +0 -1
- package/dist/chunk-BN5YN4UU.js.map +0 -1
- package/dist/chunk-H37CMPNZ.js.map +0 -1
- package/dist/chunk-KTKTSTDR.cjs.map +0 -1
- package/dist/chunk-M2PIFW7O.cjs.map +0 -1
- package/dist/chunk-NDI2C7UD.js.map +0 -1
|
@@ -12,6 +12,11 @@ export declare const datasetAndExperimentIdPathParams: z.ZodObject<{
|
|
|
12
12
|
datasetId: z.ZodString;
|
|
13
13
|
experimentId: z.ZodString;
|
|
14
14
|
}, z.core.$strip>;
|
|
15
|
+
export declare const experimentResultIdPathParams: z.ZodObject<{
|
|
16
|
+
datasetId: z.ZodString;
|
|
17
|
+
experimentId: z.ZodString;
|
|
18
|
+
resultId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>;
|
|
15
20
|
export declare const datasetAndItemIdPathParams: z.ZodObject<{
|
|
16
21
|
datasetId: z.ZodString;
|
|
17
22
|
itemId: z.ZodString;
|
|
@@ -33,6 +38,8 @@ export declare const createDatasetBodySchema: z.ZodObject<{
|
|
|
33
38
|
inputSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>, z.ZodNull]>>;
|
|
34
39
|
groundTruthSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>, z.ZodNull]>>;
|
|
35
40
|
requestContextSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>, z.ZodNull]>>;
|
|
41
|
+
targetType: z.ZodOptional<z.ZodString>;
|
|
42
|
+
targetIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
36
43
|
}, z.core.$strip>;
|
|
37
44
|
export declare const updateDatasetBodySchema: z.ZodObject<{
|
|
38
45
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -41,18 +48,41 @@ export declare const updateDatasetBodySchema: z.ZodObject<{
|
|
|
41
48
|
inputSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>, z.ZodNull]>>;
|
|
42
49
|
groundTruthSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>, z.ZodNull]>>;
|
|
43
50
|
requestContextSchema: z.ZodOptional<z.ZodUnion<readonly [z.ZodType<Record<string, unknown>, unknown, z.core.$ZodTypeInternals<Record<string, unknown>, unknown>>, z.ZodNull]>>;
|
|
51
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
52
|
+
targetType: z.ZodOptional<z.ZodString>;
|
|
53
|
+
targetIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
44
54
|
}, z.core.$strip>;
|
|
45
55
|
export declare const addItemBodySchema: z.ZodObject<{
|
|
46
56
|
input: z.ZodUnknown;
|
|
47
57
|
groundTruth: z.ZodOptional<z.ZodUnknown>;
|
|
48
58
|
requestContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
49
59
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
60
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
61
|
+
type: z.ZodEnum<{
|
|
62
|
+
json: "json";
|
|
63
|
+
csv: "csv";
|
|
64
|
+
trace: "trace";
|
|
65
|
+
llm: "llm";
|
|
66
|
+
"experiment-result": "experiment-result";
|
|
67
|
+
}>;
|
|
68
|
+
referenceId: z.ZodOptional<z.ZodString>;
|
|
69
|
+
}, z.core.$strip>>;
|
|
50
70
|
}, z.core.$strip>;
|
|
51
71
|
export declare const updateItemBodySchema: z.ZodObject<{
|
|
52
72
|
input: z.ZodOptional<z.ZodUnknown>;
|
|
53
73
|
groundTruth: z.ZodOptional<z.ZodUnknown>;
|
|
54
74
|
requestContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
55
75
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
76
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
77
|
+
type: z.ZodEnum<{
|
|
78
|
+
json: "json";
|
|
79
|
+
csv: "csv";
|
|
80
|
+
trace: "trace";
|
|
81
|
+
llm: "llm";
|
|
82
|
+
"experiment-result": "experiment-result";
|
|
83
|
+
}>;
|
|
84
|
+
referenceId: z.ZodOptional<z.ZodString>;
|
|
85
|
+
}, z.core.$strip>>;
|
|
56
86
|
}, z.core.$strip>;
|
|
57
87
|
export declare const triggerExperimentBodySchema: z.ZodObject<{
|
|
58
88
|
targetType: z.ZodEnum<{
|
|
@@ -78,6 +108,9 @@ export declare const datasetResponseSchema: z.ZodObject<{
|
|
|
78
108
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
79
109
|
groundTruthSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
80
110
|
requestContextSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
111
|
+
tags: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
112
|
+
targetType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
113
|
+
targetIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
81
114
|
version: z.ZodNumber;
|
|
82
115
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
83
116
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
@@ -90,6 +123,16 @@ export declare const datasetItemResponseSchema: z.ZodObject<{
|
|
|
90
123
|
groundTruth: z.ZodOptional<z.ZodUnknown>;
|
|
91
124
|
requestContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
92
125
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
126
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
127
|
+
type: z.ZodEnum<{
|
|
128
|
+
json: "json";
|
|
129
|
+
csv: "csv";
|
|
130
|
+
trace: "trace";
|
|
131
|
+
llm: "llm";
|
|
132
|
+
"experiment-result": "experiment-result";
|
|
133
|
+
}>;
|
|
134
|
+
referenceId: z.ZodOptional<z.ZodString>;
|
|
135
|
+
}, z.core.$strip>>;
|
|
93
136
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
94
137
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
95
138
|
}, z.core.$strip>;
|
|
@@ -146,8 +189,22 @@ export declare const experimentResultResponseSchema: z.ZodObject<{
|
|
|
146
189
|
completedAt: z.ZodCoercedDate<unknown>;
|
|
147
190
|
retryCount: z.ZodNumber;
|
|
148
191
|
traceId: z.ZodNullable<z.ZodString>;
|
|
192
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
193
|
+
"needs-review": "needs-review";
|
|
194
|
+
reviewed: "reviewed";
|
|
195
|
+
complete: "complete";
|
|
196
|
+
}>>>;
|
|
197
|
+
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
149
198
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
150
199
|
}, z.core.$strip>;
|
|
200
|
+
export declare const updateExperimentResultBodySchema: z.ZodObject<{
|
|
201
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
202
|
+
"needs-review": "needs-review";
|
|
203
|
+
reviewed: "reviewed";
|
|
204
|
+
complete: "complete";
|
|
205
|
+
}>>>;
|
|
206
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
207
|
+
}, z.core.$strip>;
|
|
151
208
|
export declare const comparisonResponseSchema: z.ZodObject<{
|
|
152
209
|
baselineId: z.ZodString;
|
|
153
210
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -201,6 +258,9 @@ export declare const listDatasetsResponseSchema: z.ZodObject<{
|
|
|
201
258
|
inputSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
202
259
|
groundTruthSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
203
260
|
requestContextSchema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
261
|
+
tags: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
262
|
+
targetType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
263
|
+
targetIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
204
264
|
version: z.ZodNumber;
|
|
205
265
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
206
266
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
@@ -221,6 +281,16 @@ export declare const listItemsResponseSchema: z.ZodObject<{
|
|
|
221
281
|
groundTruth: z.ZodOptional<z.ZodUnknown>;
|
|
222
282
|
requestContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
223
283
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
284
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
285
|
+
type: z.ZodEnum<{
|
|
286
|
+
json: "json";
|
|
287
|
+
csv: "csv";
|
|
288
|
+
trace: "trace";
|
|
289
|
+
llm: "llm";
|
|
290
|
+
"experiment-result": "experiment-result";
|
|
291
|
+
}>;
|
|
292
|
+
referenceId: z.ZodOptional<z.ZodString>;
|
|
293
|
+
}, z.core.$strip>>;
|
|
224
294
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
225
295
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
226
296
|
}, z.core.$strip>>;
|
|
@@ -286,6 +356,12 @@ export declare const listExperimentResultsResponseSchema: z.ZodObject<{
|
|
|
286
356
|
completedAt: z.ZodCoercedDate<unknown>;
|
|
287
357
|
retryCount: z.ZodNumber;
|
|
288
358
|
traceId: z.ZodNullable<z.ZodString>;
|
|
359
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
360
|
+
"needs-review": "needs-review";
|
|
361
|
+
reviewed: "reviewed";
|
|
362
|
+
complete: "complete";
|
|
363
|
+
}>>>;
|
|
364
|
+
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
289
365
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
290
366
|
}, z.core.$strip>>;
|
|
291
367
|
pagination: z.ZodObject<{
|
|
@@ -352,6 +428,16 @@ export declare const batchInsertItemsBodySchema: z.ZodObject<{
|
|
|
352
428
|
groundTruth: z.ZodOptional<z.ZodUnknown>;
|
|
353
429
|
requestContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
354
430
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
431
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
432
|
+
type: z.ZodEnum<{
|
|
433
|
+
json: "json";
|
|
434
|
+
csv: "csv";
|
|
435
|
+
trace: "trace";
|
|
436
|
+
llm: "llm";
|
|
437
|
+
"experiment-result": "experiment-result";
|
|
438
|
+
}>;
|
|
439
|
+
referenceId: z.ZodOptional<z.ZodString>;
|
|
440
|
+
}, z.core.$strip>>;
|
|
355
441
|
}, z.core.$strip>>;
|
|
356
442
|
}, z.core.$strip>;
|
|
357
443
|
export declare const batchInsertItemsResponseSchema: z.ZodObject<{
|
|
@@ -363,6 +449,16 @@ export declare const batchInsertItemsResponseSchema: z.ZodObject<{
|
|
|
363
449
|
groundTruth: z.ZodOptional<z.ZodUnknown>;
|
|
364
450
|
requestContext: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
365
451
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
452
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
453
|
+
type: z.ZodEnum<{
|
|
454
|
+
json: "json";
|
|
455
|
+
csv: "csv";
|
|
456
|
+
trace: "trace";
|
|
457
|
+
llm: "llm";
|
|
458
|
+
"experiment-result": "experiment-result";
|
|
459
|
+
}>;
|
|
460
|
+
referenceId: z.ZodOptional<z.ZodString>;
|
|
461
|
+
}, z.core.$strip>>;
|
|
366
462
|
createdAt: z.ZodCoercedDate<unknown>;
|
|
367
463
|
updatedAt: z.ZodCoercedDate<unknown>;
|
|
368
464
|
}, z.core.$strip>>;
|
|
@@ -375,4 +471,46 @@ export declare const batchDeleteItemsResponseSchema: z.ZodObject<{
|
|
|
375
471
|
success: z.ZodBoolean;
|
|
376
472
|
deletedCount: z.ZodNumber;
|
|
377
473
|
}, z.core.$strip>;
|
|
474
|
+
export declare const generateItemsBodySchema: z.ZodObject<{
|
|
475
|
+
modelId: z.ZodString;
|
|
476
|
+
prompt: z.ZodString;
|
|
477
|
+
count: z.ZodDefault<z.ZodNumber>;
|
|
478
|
+
agentContext: z.ZodOptional<z.ZodObject<{
|
|
479
|
+
description: z.ZodOptional<z.ZodString>;
|
|
480
|
+
instructions: z.ZodOptional<z.ZodString>;
|
|
481
|
+
tools: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
482
|
+
}, z.core.$strip>>;
|
|
483
|
+
}, z.core.$strip>;
|
|
484
|
+
export declare const generateItemsResponseSchema: z.ZodObject<{
|
|
485
|
+
items: z.ZodArray<z.ZodObject<{
|
|
486
|
+
input: z.ZodUnknown;
|
|
487
|
+
groundTruth: z.ZodOptional<z.ZodUnknown>;
|
|
488
|
+
}, z.core.$strip>>;
|
|
489
|
+
}, z.core.$strip>;
|
|
490
|
+
export declare const clusterFailuresBodySchema: z.ZodObject<{
|
|
491
|
+
modelId: z.ZodString;
|
|
492
|
+
items: z.ZodArray<z.ZodObject<{
|
|
493
|
+
id: z.ZodString;
|
|
494
|
+
input: z.ZodUnknown;
|
|
495
|
+
output: z.ZodOptional<z.ZodUnknown>;
|
|
496
|
+
error: z.ZodOptional<z.ZodString>;
|
|
497
|
+
scores: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNumber>>;
|
|
498
|
+
existingTags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
499
|
+
}, z.core.$strip>>;
|
|
500
|
+
availableTags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
501
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
502
|
+
}, z.core.$strip>;
|
|
503
|
+
export declare const clusterFailuresResponseSchema: z.ZodObject<{
|
|
504
|
+
clusters: z.ZodArray<z.ZodObject<{
|
|
505
|
+
id: z.ZodString;
|
|
506
|
+
label: z.ZodString;
|
|
507
|
+
description: z.ZodString;
|
|
508
|
+
itemIds: z.ZodArray<z.ZodString>;
|
|
509
|
+
}, z.core.$strip>>;
|
|
510
|
+
proposedTags: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
511
|
+
itemId: z.ZodString;
|
|
512
|
+
tags: z.ZodArray<z.ZodString>;
|
|
513
|
+
reason: z.ZodString;
|
|
514
|
+
}, z.core.$strip>>>;
|
|
515
|
+
}, z.core.$strip>;
|
|
378
516
|
//# sourceMappingURL=datasets.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datasets.d.ts","sourceRoot":"","sources":["../../../src/server/schemas/datasets.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"datasets.d.ts","sourceRoot":"","sources":["../../../src/server/schemas/datasets.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AA0BpB,eAAO,MAAM,mBAAmB;;iBAE9B,CAAC;AAEH,eAAO,MAAM,sBAAsB;;iBAEjC,CAAC;AAEH,eAAO,MAAM,gBAAgB;;iBAE3B,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;iBAG3C,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;iBAIvC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;iBAGrC,CAAC;AAMH,eAAO,MAAM,qBAAqB;;;iBAGhC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;iBAK/B,CAAC;AAMH,eAAO,MAAM,uBAAuB;;;;;;;;;iBASlC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;iBAUlC,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;iBAM5B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;iBAM/B,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;iBAOtC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;iBAGvC,CAAC;AAOH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;iBAchC,CAAC;AAGH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;iBAWpC,CAAC;AAGH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAkBnC,CAAC;AAGH,eAAO,MAAM,kBAAkB;;;;;;iBAM7B,CAAC;AAGH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;iBAsBzC,CAAC;AAEH,eAAO,MAAM,gCAAgC;;;;;;;iBAG3C,CAAC;AAmBH,eAAO,MAAM,wBAAwB;;;;;;;;;;;iBAGnC,CAAC;AAIH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA8B1C,CAAC;AAMH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;iBAGrC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAGlC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAGxC,CAAC;AAEH,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAG9C,CAAC;AAOH,eAAO,MAAM,4BAA4B;;;;iBAIvC,CAAC;AAGH,eAAO,MAAM,yBAAyB;;;;;;;;;;;iBAWpC,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;iBAEzC,CAAC;AAGH,eAAO,MAAM,4BAA4B;;;;;iBAKvC,CAAC;AAEH,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;iBAG5C,CAAC;AAMH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;iBAUrC,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;iBAGzC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;iBAErC,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;iBAGzC,CAAC;AAMH,eAAO,MAAM,uBAAuB;;;;;;;;;iBAYlC,CAAC;AAOH,eAAO,MAAM,2BAA2B;;;;;iBAEtC,CAAC;AAMH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;iBAwBpC,CAAC;AASH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;iBAYxC,CAAC"}
|
|
@@ -11,10 +11,10 @@ var chunkWOMVBFIP_cjs = require('../../chunk-WOMVBFIP.cjs');
|
|
|
11
11
|
var chunkLU7HU7KW_cjs = require('../../chunk-LU7HU7KW.cjs');
|
|
12
12
|
var chunkBNJI7YMJ_cjs = require('../../chunk-BNJI7YMJ.cjs');
|
|
13
13
|
var chunk574U64WA_cjs = require('../../chunk-574U64WA.cjs');
|
|
14
|
-
var
|
|
14
|
+
var chunkN5RFB7A4_cjs = require('../../chunk-N5RFB7A4.cjs');
|
|
15
15
|
var chunkJ3SEZ24R_cjs = require('../../chunk-J3SEZ24R.cjs');
|
|
16
16
|
var chunkLCP4G5CT_cjs = require('../../chunk-LCP4G5CT.cjs');
|
|
17
|
-
var
|
|
17
|
+
var chunkFOHX5HVN_cjs = require('../../chunk-FOHX5HVN.cjs');
|
|
18
18
|
var chunk5HJQACVQ_cjs = require('../../chunk-5HJQACVQ.cjs');
|
|
19
19
|
var chunkQTBCX6KF_cjs = require('../../chunk-QTBCX6KF.cjs');
|
|
20
20
|
var chunkEU4WZ6EN_cjs = require('../../chunk-EU4WZ6EN.cjs');
|
|
@@ -451,135 +451,159 @@ Object.defineProperty(exports, "userAccessSchema", {
|
|
|
451
451
|
});
|
|
452
452
|
Object.defineProperty(exports, "addItemBodySchema", {
|
|
453
453
|
enumerable: true,
|
|
454
|
-
get: function () { return
|
|
454
|
+
get: function () { return chunkN5RFB7A4_cjs.addItemBodySchema; }
|
|
455
455
|
});
|
|
456
456
|
Object.defineProperty(exports, "batchDeleteItemsBodySchema", {
|
|
457
457
|
enumerable: true,
|
|
458
|
-
get: function () { return
|
|
458
|
+
get: function () { return chunkN5RFB7A4_cjs.batchDeleteItemsBodySchema; }
|
|
459
459
|
});
|
|
460
460
|
Object.defineProperty(exports, "batchDeleteItemsResponseSchema", {
|
|
461
461
|
enumerable: true,
|
|
462
|
-
get: function () { return
|
|
462
|
+
get: function () { return chunkN5RFB7A4_cjs.batchDeleteItemsResponseSchema; }
|
|
463
463
|
});
|
|
464
464
|
Object.defineProperty(exports, "batchInsertItemsBodySchema", {
|
|
465
465
|
enumerable: true,
|
|
466
|
-
get: function () { return
|
|
466
|
+
get: function () { return chunkN5RFB7A4_cjs.batchInsertItemsBodySchema; }
|
|
467
467
|
});
|
|
468
468
|
Object.defineProperty(exports, "batchInsertItemsResponseSchema", {
|
|
469
469
|
enumerable: true,
|
|
470
|
-
get: function () { return
|
|
470
|
+
get: function () { return chunkN5RFB7A4_cjs.batchInsertItemsResponseSchema; }
|
|
471
|
+
});
|
|
472
|
+
Object.defineProperty(exports, "clusterFailuresBodySchema", {
|
|
473
|
+
enumerable: true,
|
|
474
|
+
get: function () { return chunkN5RFB7A4_cjs.clusterFailuresBodySchema; }
|
|
475
|
+
});
|
|
476
|
+
Object.defineProperty(exports, "clusterFailuresResponseSchema", {
|
|
477
|
+
enumerable: true,
|
|
478
|
+
get: function () { return chunkN5RFB7A4_cjs.clusterFailuresResponseSchema; }
|
|
471
479
|
});
|
|
472
480
|
Object.defineProperty(exports, "compareExperimentsBodySchema", {
|
|
473
481
|
enumerable: true,
|
|
474
|
-
get: function () { return
|
|
482
|
+
get: function () { return chunkN5RFB7A4_cjs.compareExperimentsBodySchema; }
|
|
475
483
|
});
|
|
476
484
|
Object.defineProperty(exports, "comparisonResponseSchema", {
|
|
477
485
|
enumerable: true,
|
|
478
|
-
get: function () { return
|
|
486
|
+
get: function () { return chunkN5RFB7A4_cjs.comparisonResponseSchema; }
|
|
479
487
|
});
|
|
480
488
|
Object.defineProperty(exports, "createDatasetBodySchema", {
|
|
481
489
|
enumerable: true,
|
|
482
|
-
get: function () { return
|
|
490
|
+
get: function () { return chunkN5RFB7A4_cjs.createDatasetBodySchema; }
|
|
483
491
|
});
|
|
484
492
|
Object.defineProperty(exports, "datasetAndExperimentIdPathParams", {
|
|
485
493
|
enumerable: true,
|
|
486
|
-
get: function () { return
|
|
494
|
+
get: function () { return chunkN5RFB7A4_cjs.datasetAndExperimentIdPathParams; }
|
|
487
495
|
});
|
|
488
496
|
Object.defineProperty(exports, "datasetAndItemIdPathParams", {
|
|
489
497
|
enumerable: true,
|
|
490
|
-
get: function () { return
|
|
498
|
+
get: function () { return chunkN5RFB7A4_cjs.datasetAndItemIdPathParams; }
|
|
491
499
|
});
|
|
492
500
|
Object.defineProperty(exports, "datasetIdPathParams", {
|
|
493
501
|
enumerable: true,
|
|
494
|
-
get: function () { return
|
|
502
|
+
get: function () { return chunkN5RFB7A4_cjs.datasetIdPathParams; }
|
|
495
503
|
});
|
|
496
504
|
Object.defineProperty(exports, "datasetItemResponseSchema", {
|
|
497
505
|
enumerable: true,
|
|
498
|
-
get: function () { return
|
|
506
|
+
get: function () { return chunkN5RFB7A4_cjs.datasetItemResponseSchema; }
|
|
499
507
|
});
|
|
500
508
|
Object.defineProperty(exports, "datasetItemVersionPathParams", {
|
|
501
509
|
enumerable: true,
|
|
502
|
-
get: function () { return
|
|
510
|
+
get: function () { return chunkN5RFB7A4_cjs.datasetItemVersionPathParams; }
|
|
503
511
|
});
|
|
504
512
|
Object.defineProperty(exports, "datasetResponseSchema", {
|
|
505
513
|
enumerable: true,
|
|
506
|
-
get: function () { return
|
|
514
|
+
get: function () { return chunkN5RFB7A4_cjs.datasetResponseSchema; }
|
|
507
515
|
});
|
|
508
516
|
Object.defineProperty(exports, "datasetVersionResponseSchema", {
|
|
509
517
|
enumerable: true,
|
|
510
|
-
get: function () { return
|
|
518
|
+
get: function () { return chunkN5RFB7A4_cjs.datasetVersionResponseSchema; }
|
|
511
519
|
});
|
|
512
520
|
Object.defineProperty(exports, "experimentIdPathParams", {
|
|
513
521
|
enumerable: true,
|
|
514
|
-
get: function () { return
|
|
522
|
+
get: function () { return chunkN5RFB7A4_cjs.experimentIdPathParams; }
|
|
515
523
|
});
|
|
516
524
|
Object.defineProperty(exports, "experimentResponseSchema", {
|
|
517
525
|
enumerable: true,
|
|
518
|
-
get: function () { return
|
|
526
|
+
get: function () { return chunkN5RFB7A4_cjs.experimentResponseSchema; }
|
|
527
|
+
});
|
|
528
|
+
Object.defineProperty(exports, "experimentResultIdPathParams", {
|
|
529
|
+
enumerable: true,
|
|
530
|
+
get: function () { return chunkN5RFB7A4_cjs.experimentResultIdPathParams; }
|
|
519
531
|
});
|
|
520
532
|
Object.defineProperty(exports, "experimentResultResponseSchema", {
|
|
521
533
|
enumerable: true,
|
|
522
|
-
get: function () { return
|
|
534
|
+
get: function () { return chunkN5RFB7A4_cjs.experimentResultResponseSchema; }
|
|
523
535
|
});
|
|
524
536
|
Object.defineProperty(exports, "experimentSummaryResponseSchema", {
|
|
525
537
|
enumerable: true,
|
|
526
|
-
get: function () { return
|
|
538
|
+
get: function () { return chunkN5RFB7A4_cjs.experimentSummaryResponseSchema; }
|
|
539
|
+
});
|
|
540
|
+
Object.defineProperty(exports, "generateItemsBodySchema", {
|
|
541
|
+
enumerable: true,
|
|
542
|
+
get: function () { return chunkN5RFB7A4_cjs.generateItemsBodySchema; }
|
|
543
|
+
});
|
|
544
|
+
Object.defineProperty(exports, "generateItemsResponseSchema", {
|
|
545
|
+
enumerable: true,
|
|
546
|
+
get: function () { return chunkN5RFB7A4_cjs.generateItemsResponseSchema; }
|
|
527
547
|
});
|
|
528
548
|
Object.defineProperty(exports, "itemIdPathParams", {
|
|
529
549
|
enumerable: true,
|
|
530
|
-
get: function () { return
|
|
550
|
+
get: function () { return chunkN5RFB7A4_cjs.itemIdPathParams; }
|
|
531
551
|
});
|
|
532
552
|
Object.defineProperty(exports, "itemVersionResponseSchema", {
|
|
533
553
|
enumerable: true,
|
|
534
|
-
get: function () { return
|
|
554
|
+
get: function () { return chunkN5RFB7A4_cjs.itemVersionResponseSchema; }
|
|
535
555
|
});
|
|
536
556
|
Object.defineProperty(exports, "listDatasetVersionsResponseSchema", {
|
|
537
557
|
enumerable: true,
|
|
538
|
-
get: function () { return
|
|
558
|
+
get: function () { return chunkN5RFB7A4_cjs.listDatasetVersionsResponseSchema; }
|
|
539
559
|
});
|
|
540
560
|
Object.defineProperty(exports, "listDatasetsResponseSchema", {
|
|
541
561
|
enumerable: true,
|
|
542
|
-
get: function () { return
|
|
562
|
+
get: function () { return chunkN5RFB7A4_cjs.listDatasetsResponseSchema; }
|
|
543
563
|
});
|
|
544
564
|
Object.defineProperty(exports, "listExperimentResultsResponseSchema", {
|
|
545
565
|
enumerable: true,
|
|
546
|
-
get: function () { return
|
|
566
|
+
get: function () { return chunkN5RFB7A4_cjs.listExperimentResultsResponseSchema; }
|
|
547
567
|
});
|
|
548
568
|
Object.defineProperty(exports, "listExperimentsResponseSchema", {
|
|
549
569
|
enumerable: true,
|
|
550
|
-
get: function () { return
|
|
570
|
+
get: function () { return chunkN5RFB7A4_cjs.listExperimentsResponseSchema; }
|
|
551
571
|
});
|
|
552
572
|
Object.defineProperty(exports, "listItemVersionsResponseSchema", {
|
|
553
573
|
enumerable: true,
|
|
554
|
-
get: function () { return
|
|
574
|
+
get: function () { return chunkN5RFB7A4_cjs.listItemVersionsResponseSchema; }
|
|
555
575
|
});
|
|
556
576
|
Object.defineProperty(exports, "listItemsQuerySchema", {
|
|
557
577
|
enumerable: true,
|
|
558
|
-
get: function () { return
|
|
578
|
+
get: function () { return chunkN5RFB7A4_cjs.listItemsQuerySchema; }
|
|
559
579
|
});
|
|
560
580
|
Object.defineProperty(exports, "listItemsResponseSchema", {
|
|
561
581
|
enumerable: true,
|
|
562
|
-
get: function () { return
|
|
582
|
+
get: function () { return chunkN5RFB7A4_cjs.listItemsResponseSchema; }
|
|
563
583
|
});
|
|
564
584
|
Object.defineProperty(exports, "paginationQuerySchema", {
|
|
565
585
|
enumerable: true,
|
|
566
|
-
get: function () { return
|
|
586
|
+
get: function () { return chunkN5RFB7A4_cjs.paginationQuerySchema; }
|
|
567
587
|
});
|
|
568
588
|
Object.defineProperty(exports, "scorerResultSchema", {
|
|
569
589
|
enumerable: true,
|
|
570
|
-
get: function () { return
|
|
590
|
+
get: function () { return chunkN5RFB7A4_cjs.scorerResultSchema; }
|
|
571
591
|
});
|
|
572
592
|
Object.defineProperty(exports, "triggerExperimentBodySchema", {
|
|
573
593
|
enumerable: true,
|
|
574
|
-
get: function () { return
|
|
594
|
+
get: function () { return chunkN5RFB7A4_cjs.triggerExperimentBodySchema; }
|
|
575
595
|
});
|
|
576
596
|
Object.defineProperty(exports, "updateDatasetBodySchema", {
|
|
577
597
|
enumerable: true,
|
|
578
|
-
get: function () { return
|
|
598
|
+
get: function () { return chunkN5RFB7A4_cjs.updateDatasetBodySchema; }
|
|
599
|
+
});
|
|
600
|
+
Object.defineProperty(exports, "updateExperimentResultBodySchema", {
|
|
601
|
+
enumerable: true,
|
|
602
|
+
get: function () { return chunkN5RFB7A4_cjs.updateExperimentResultBodySchema; }
|
|
579
603
|
});
|
|
580
604
|
Object.defineProperty(exports, "updateItemBodySchema", {
|
|
581
605
|
enumerable: true,
|
|
582
|
-
get: function () { return
|
|
606
|
+
get: function () { return chunkN5RFB7A4_cjs.updateItemBodySchema; }
|
|
583
607
|
});
|
|
584
608
|
Object.defineProperty(exports, "activateMCPClientVersionResponseSchema", {
|
|
585
609
|
enumerable: true,
|
|
@@ -687,43 +711,43 @@ Object.defineProperty(exports, "vectorNamePathParams", {
|
|
|
687
711
|
});
|
|
688
712
|
Object.defineProperty(exports, "entityPathParams", {
|
|
689
713
|
enumerable: true,
|
|
690
|
-
get: function () { return
|
|
714
|
+
get: function () { return chunkFOHX5HVN_cjs.entityPathParams; }
|
|
691
715
|
});
|
|
692
716
|
Object.defineProperty(exports, "listScorersResponseSchema", {
|
|
693
717
|
enumerable: true,
|
|
694
|
-
get: function () { return
|
|
718
|
+
get: function () { return chunkFOHX5HVN_cjs.listScorersResponseSchema; }
|
|
695
719
|
});
|
|
696
720
|
Object.defineProperty(exports, "listScoresByEntityIdQuerySchema", {
|
|
697
721
|
enumerable: true,
|
|
698
|
-
get: function () { return
|
|
722
|
+
get: function () { return chunkFOHX5HVN_cjs.listScoresByEntityIdQuerySchema; }
|
|
699
723
|
});
|
|
700
724
|
Object.defineProperty(exports, "listScoresByRunIdQuerySchema", {
|
|
701
725
|
enumerable: true,
|
|
702
|
-
get: function () { return
|
|
726
|
+
get: function () { return chunkFOHX5HVN_cjs.listScoresByRunIdQuerySchema; }
|
|
703
727
|
});
|
|
704
728
|
Object.defineProperty(exports, "listScoresByScorerIdQuerySchema", {
|
|
705
729
|
enumerable: true,
|
|
706
|
-
get: function () { return
|
|
730
|
+
get: function () { return chunkFOHX5HVN_cjs.listScoresByScorerIdQuerySchema; }
|
|
707
731
|
});
|
|
708
732
|
Object.defineProperty(exports, "saveScoreBodySchema", {
|
|
709
733
|
enumerable: true,
|
|
710
|
-
get: function () { return
|
|
734
|
+
get: function () { return chunkFOHX5HVN_cjs.saveScoreBodySchema; }
|
|
711
735
|
});
|
|
712
736
|
Object.defineProperty(exports, "saveScoreResponseSchema", {
|
|
713
737
|
enumerable: true,
|
|
714
|
-
get: function () { return
|
|
738
|
+
get: function () { return chunkFOHX5HVN_cjs.saveScoreResponseSchema; }
|
|
715
739
|
});
|
|
716
740
|
Object.defineProperty(exports, "scorerEntrySchema", {
|
|
717
741
|
enumerable: true,
|
|
718
|
-
get: function () { return
|
|
742
|
+
get: function () { return chunkFOHX5HVN_cjs.scorerEntrySchema; }
|
|
719
743
|
});
|
|
720
744
|
Object.defineProperty(exports, "scorerIdPathParams", {
|
|
721
745
|
enumerable: true,
|
|
722
|
-
get: function () { return
|
|
746
|
+
get: function () { return chunkFOHX5HVN_cjs.scorerIdPathParams; }
|
|
723
747
|
});
|
|
724
748
|
Object.defineProperty(exports, "scoresWithPaginationResponseSchema", {
|
|
725
749
|
enumerable: true,
|
|
726
|
-
get: function () { return
|
|
750
|
+
get: function () { return chunkFOHX5HVN_cjs.scoresWithPaginationResponseSchema; }
|
|
727
751
|
});
|
|
728
752
|
Object.defineProperty(exports, "listLogTransportsResponseSchema", {
|
|
729
753
|
enumerable: true,
|
|
@@ -9,10 +9,10 @@ export { executeProcessorBodySchema, executeProcessorResponseSchema, listProcess
|
|
|
9
9
|
export { activatePromptBlockVersionResponseSchema, comparePromptBlockVersionsQuerySchema, comparePromptBlockVersionsResponseSchema, createPromptBlockVersionBodySchema, createPromptBlockVersionResponseSchema, deletePromptBlockVersionResponseSchema, getPromptBlockVersionResponseSchema, listPromptBlockVersionsQuerySchema, listPromptBlockVersionsResponseSchema, promptBlockVersionIdPathParams, promptBlockVersionPathParams, promptBlockVersionSchema, restorePromptBlockVersionResponseSchema } from '../../chunk-PONEV4T5.js';
|
|
10
10
|
export { activateScorerVersionResponseSchema, compareScorerVersionsQuerySchema, compareScorerVersionsResponseSchema, createScorerVersionBodySchema, createScorerVersionResponseSchema, deleteScorerVersionResponseSchema, getScorerVersionResponseSchema, listScorerVersionsQuerySchema, listScorerVersionsResponseSchema, restoreScorerVersionResponseSchema, scorerVersionIdPathParams, scorerVersionPathParams, scorerVersionSchema } from '../../chunk-2ERW3HSX.js';
|
|
11
11
|
export { authenticatedCapabilitiesSchema, authenticatedUserSchema, capabilitiesResponseSchema, capabilityFlagsSchema, credentialsResponseSchema, credentialsSignInBodySchema, credentialsSignUpBodySchema, currentUserResponseSchema, loginConfigSchema, logoutResponseSchema, publicCapabilitiesSchema, ssoCallbackQuerySchema, ssoCallbackResponseSchema, ssoConfigSchema, ssoLoginQuerySchema, ssoLoginResponseSchema, userAccessSchema } from '../../chunk-NLMVQMCR.js';
|
|
12
|
-
export { addItemBodySchema, batchDeleteItemsBodySchema, batchDeleteItemsResponseSchema, batchInsertItemsBodySchema, batchInsertItemsResponseSchema, compareExperimentsBodySchema, comparisonResponseSchema, createDatasetBodySchema, datasetAndExperimentIdPathParams, datasetAndItemIdPathParams, datasetIdPathParams, datasetItemResponseSchema, datasetItemVersionPathParams, datasetResponseSchema, datasetVersionResponseSchema, experimentIdPathParams, experimentResponseSchema, experimentResultResponseSchema, experimentSummaryResponseSchema, itemIdPathParams, itemVersionResponseSchema, listDatasetVersionsResponseSchema, listDatasetsResponseSchema, listExperimentResultsResponseSchema, listExperimentsResponseSchema, listItemVersionsResponseSchema, listItemsQuerySchema, listItemsResponseSchema, paginationQuerySchema, scorerResultSchema, triggerExperimentBodySchema, updateDatasetBodySchema, updateItemBodySchema } from '../../chunk-
|
|
12
|
+
export { addItemBodySchema, batchDeleteItemsBodySchema, batchDeleteItemsResponseSchema, batchInsertItemsBodySchema, batchInsertItemsResponseSchema, clusterFailuresBodySchema, clusterFailuresResponseSchema, compareExperimentsBodySchema, comparisonResponseSchema, createDatasetBodySchema, datasetAndExperimentIdPathParams, datasetAndItemIdPathParams, datasetIdPathParams, datasetItemResponseSchema, datasetItemVersionPathParams, datasetResponseSchema, datasetVersionResponseSchema, experimentIdPathParams, experimentResponseSchema, experimentResultIdPathParams, experimentResultResponseSchema, experimentSummaryResponseSchema, generateItemsBodySchema, generateItemsResponseSchema, itemIdPathParams, itemVersionResponseSchema, listDatasetVersionsResponseSchema, listDatasetsResponseSchema, listExperimentResultsResponseSchema, listExperimentsResponseSchema, listItemVersionsResponseSchema, listItemsQuerySchema, listItemsResponseSchema, paginationQuerySchema, scorerResultSchema, triggerExperimentBodySchema, updateDatasetBodySchema, updateExperimentResultBodySchema, updateItemBodySchema } from '../../chunk-7LQDR5AI.js';
|
|
13
13
|
export { activateMCPClientVersionResponseSchema, compareMCPClientVersionsQuerySchema, compareMCPClientVersionsResponseSchema, createMCPClientVersionBodySchema, createMCPClientVersionResponseSchema, deleteMCPClientVersionResponseSchema, getMCPClientVersionResponseSchema, listMCPClientVersionsQuerySchema, listMCPClientVersionsResponseSchema, mcpClientVersionIdPathParams, mcpClientVersionPathParams, mcpClientVersionSchema, restoreMCPClientVersionResponseSchema } from '../../chunk-I4THGZHE.js';
|
|
14
14
|
export { createIndexBodySchema, createIndexResponseSchema, deleteIndexResponseSchema, describeIndexResponseSchema, listEmbeddersResponseSchema, listIndexesResponseSchema, listVectorsResponseSchema, queryVectorsBodySchema, queryVectorsResponseSchema, upsertVectorsBodySchema, upsertVectorsResponseSchema, vectorIndexPathParams, vectorNamePathParams } from '../../chunk-TB3QXBEC.js';
|
|
15
|
-
export { entityPathParams, listScorersResponseSchema, listScoresByEntityIdQuerySchema, listScoresByRunIdQuerySchema, listScoresByScorerIdQuerySchema, saveScoreBodySchema, saveScoreResponseSchema, scorerEntrySchema, scorerIdPathParams, scoresWithPaginationResponseSchema } from '../../chunk-
|
|
15
|
+
export { entityPathParams, listScorersResponseSchema, listScoresByEntityIdQuerySchema, listScoresByRunIdQuerySchema, listScoresByScorerIdQuerySchema, saveScoreBodySchema, saveScoreResponseSchema, scorerEntrySchema, scorerIdPathParams, scoresWithPaginationResponseSchema } from '../../chunk-APJA4LIB.js';
|
|
16
16
|
export { listLogTransportsResponseSchema, listLogsQuerySchema, listLogsResponseSchema } from '../../chunk-BOIOGPBE.js';
|
|
17
17
|
export { getMcpServerDetailQuerySchema, jsonRpcErrorSchema, listMcpServerToolsResponseSchema, listMcpServersQuerySchema, listMcpServersResponseSchema, executeToolBodySchema as mcpExecuteToolBodySchema, executeToolResponseSchema as mcpExecuteToolResponseSchema, mcpServerDetailPathParams, mcpServerIdPathParams, mcpServerToolPathParams, mcpToolInfoSchema, serverDetailSchema, serverInfoSchema, versionDetailSchema } from '../../chunk-TJIN7OPG.js';
|
|
18
18
|
export { agentIdQuerySchema, awaitBufferStatusBodySchema, awaitBufferStatusResponseSchema, cloneThreadBodySchema, cloneThreadResponseSchema, createThreadBodySchema, createThreadNetworkQuerySchema, deleteMessagesBodySchema, deleteMessagesNetworkQuerySchema, deleteMessagesQuerySchema, deleteMessagesResponseSchema, deleteThreadNetworkQuerySchema, deleteThreadQuerySchema, deleteThreadResponseSchema, getMemoryConfigQuerySchema, getMemoryStatusNetworkQuerySchema, getMemoryStatusQuerySchema, getObservationalMemoryQuerySchema, getObservationalMemoryResponseSchema, getThreadByIdNetworkQuerySchema, getThreadByIdQuerySchema, getThreadByIdResponseSchema, getWorkingMemoryQuerySchema, getWorkingMemoryResponseSchema, listMessagesNetworkQuerySchema, listMessagesQuerySchema, listMessagesResponseSchema, listThreadsNetworkQuerySchema, listThreadsQuerySchema, listThreadsResponseSchema, memoryConfigResponseSchema, memoryStatusResponseSchema, optionalAgentIdQuerySchema, saveMessagesBodySchema, saveMessagesNetworkQuerySchema, saveMessagesResponseSchema, searchMemoryQuerySchema, searchMemoryResponseSchema, threadIdPathParams, updateThreadBodySchema, updateThreadNetworkQuerySchema, updateWorkingMemoryBodySchema, updateWorkingMemoryResponseSchema } from '../../chunk-FYO3ZHLO.js';
|
|
@@ -17,6 +17,10 @@ export declare const scorerEntrySchema: z.ZodObject<{
|
|
|
17
17
|
agentNames: z.ZodArray<z.ZodString>;
|
|
18
18
|
workflowIds: z.ZodArray<z.ZodString>;
|
|
19
19
|
isRegistered: z.ZodBoolean;
|
|
20
|
+
source: z.ZodEnum<{
|
|
21
|
+
code: "code";
|
|
22
|
+
stored: "stored";
|
|
23
|
+
}>;
|
|
20
24
|
}, z.core.$strip>;
|
|
21
25
|
/**
|
|
22
26
|
* Response schema for list scorers endpoint
|
|
@@ -37,6 +41,10 @@ export declare const listScorersResponseSchema: z.ZodRecord<z.ZodString, z.ZodOb
|
|
|
37
41
|
agentNames: z.ZodArray<z.ZodString>;
|
|
38
42
|
workflowIds: z.ZodArray<z.ZodString>;
|
|
39
43
|
isRegistered: z.ZodBoolean;
|
|
44
|
+
source: z.ZodEnum<{
|
|
45
|
+
code: "code";
|
|
46
|
+
stored: "stored";
|
|
47
|
+
}>;
|
|
40
48
|
}, z.core.$strip>>;
|
|
41
49
|
export declare const scorerIdPathParams: z.ZodObject<{
|
|
42
50
|
scorerId: z.ZodString;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"scores.d.ts","sourceRoot":"","sources":["../../../src/server/schemas/scores.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AA4BpB;;GAEG;AACH,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"scores.d.ts","sourceRoot":"","sources":["../../../src/server/schemas/scores.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AA4BpB;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;iBAQ5B,CAAC;AAEH;;;GAGG;AACH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;kBAA0C,CAAC;AAGjF,eAAO,MAAM,kBAAkB;;iBAE7B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;iBAG3B,CAAC;AAMH,eAAO,MAAM,4BAA4B;;;iBAGvC,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;iBAK1C,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;iBAG1C,CAAC;AAGH,eAAO,MAAM,mBAAmB;;iBAE9B,CAAC;AAGH,eAAO,MAAM,kCAAkC;;;;;;;;iBAG7C,CAAC;AAEH,eAAO,MAAM,uBAAuB;;iBAElC,CAAC"}
|