lancer-shared 1.2.58 → 1.2.59
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/dist/bundle.cjs.js
CHANGED
|
@@ -12205,7 +12205,7 @@ const suitabilityCompleteEventMetadataSchema = objectType({
|
|
|
12205
12205
|
promptTokens: z.number(),
|
|
12206
12206
|
completionTokens: z.number(),
|
|
12207
12207
|
messages: z.array(objectType({
|
|
12208
|
-
role: z.
|
|
12208
|
+
role: z.string(),
|
|
12209
12209
|
content: z.string(),
|
|
12210
12210
|
})),
|
|
12211
12211
|
});
|
|
@@ -340,13 +340,13 @@ export declare const suitabilityCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
340
340
|
promptTokens: z.ZodNumber;
|
|
341
341
|
completionTokens: z.ZodNumber;
|
|
342
342
|
messages: z.ZodArray<z.ZodObject<{
|
|
343
|
-
role: z.
|
|
343
|
+
role: z.ZodString;
|
|
344
344
|
content: z.ZodString;
|
|
345
345
|
}, "strip", z.ZodTypeAny, {
|
|
346
|
-
role:
|
|
346
|
+
role: string;
|
|
347
347
|
content: string;
|
|
348
348
|
}, {
|
|
349
|
-
role:
|
|
349
|
+
role: string;
|
|
350
350
|
content: string;
|
|
351
351
|
}>, "many">;
|
|
352
352
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -358,7 +358,7 @@ export declare const suitabilityCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
358
358
|
promptTokens: number;
|
|
359
359
|
completionTokens: number;
|
|
360
360
|
messages: {
|
|
361
|
-
role:
|
|
361
|
+
role: string;
|
|
362
362
|
content: string;
|
|
363
363
|
}[];
|
|
364
364
|
}, {
|
|
@@ -370,7 +370,7 @@ export declare const suitabilityCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
370
370
|
promptTokens: number;
|
|
371
371
|
completionTokens: number;
|
|
372
372
|
messages: {
|
|
373
|
-
role:
|
|
373
|
+
role: string;
|
|
374
374
|
content: string;
|
|
375
375
|
}[];
|
|
376
376
|
}>;
|