lancer-shared 1.2.57 → 1.2.58
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
|
@@ -12217,7 +12217,7 @@ const proposalCompleteEventMetadataSchema = objectType({
|
|
|
12217
12217
|
promptTokens: z.number(),
|
|
12218
12218
|
completionTokens: z.number(),
|
|
12219
12219
|
messages: z.array(objectType({
|
|
12220
|
-
role: z.
|
|
12220
|
+
role: z.string(),
|
|
12221
12221
|
content: z.string(),
|
|
12222
12222
|
})),
|
|
12223
12223
|
});
|
|
@@ -407,13 +407,13 @@ export declare const proposalCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
407
407
|
promptTokens: z.ZodNumber;
|
|
408
408
|
completionTokens: z.ZodNumber;
|
|
409
409
|
messages: z.ZodArray<z.ZodObject<{
|
|
410
|
-
role: z.
|
|
410
|
+
role: z.ZodString;
|
|
411
411
|
content: z.ZodString;
|
|
412
412
|
}, "strip", z.ZodTypeAny, {
|
|
413
|
-
role:
|
|
413
|
+
role: string;
|
|
414
414
|
content: string;
|
|
415
415
|
}, {
|
|
416
|
-
role:
|
|
416
|
+
role: string;
|
|
417
417
|
content: string;
|
|
418
418
|
}>, "many">;
|
|
419
419
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -423,7 +423,7 @@ export declare const proposalCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
423
423
|
promptTokens: number;
|
|
424
424
|
completionTokens: number;
|
|
425
425
|
messages: {
|
|
426
|
-
role:
|
|
426
|
+
role: string;
|
|
427
427
|
content: string;
|
|
428
428
|
}[];
|
|
429
429
|
proposal: {
|
|
@@ -440,7 +440,7 @@ export declare const proposalCompleteEventMetadataSchema: z.ZodObject<{
|
|
|
440
440
|
promptTokens: number;
|
|
441
441
|
completionTokens: number;
|
|
442
442
|
messages: {
|
|
443
|
-
role:
|
|
443
|
+
role: string;
|
|
444
444
|
content: string;
|
|
445
445
|
}[];
|
|
446
446
|
proposal: {
|