properly track cache token counts
publish / publish (push) Has been cancelled

This commit is contained in:
Dax Raad
2025-06-16 12:43:22 -04:00
parent f3e32fe112
commit b5723b3ace
3 changed files with 26 additions and 7 deletions
+4
View File
@@ -174,6 +174,10 @@ export namespace Message {
input: z.number(),
output: z.number(),
reasoning: z.number(),
cache: z.object({
read: z.number(),
write: z.number(),
}),
}),
})
.optional(),