Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 1x | import z from "zod";
export type ResponseType = {
generationInfo: string;
historyItemID: string;
requestID: string;
cost: number;
regenerationCount: number;
buffer: ArrayBuffer;
};
export const ResponseMetadataSchema = z.object({
generationInfo: z.string(),
historyItemID: z.string(),
requestID: z.string(),
cost: z.coerce.number().int(),
regenerationCount: z.coerce.number().int(),
});
|