All files / src/schemas Scene.ts

0% Statements 0/1
100% Branches 0/0
100% Functions 0/0
0% Lines 0/1

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                         
import z from "zod";
 
export const SceneSchema = z.object({
    name: z.string().max(128).describe("Name or title of the scene (maximum 128 characters)"),
    description: z.string().describe("Detailed description of what happens in this scene"),
    time: z.string().describe("Temporal setting of the scene (e.g., 'morning', 'night', 'dawn', specific time)"),
    location: z.string().describe("Physical location or setting where the scene takes place"),
    dialogueBegin: z.number().describe("Starting dialogue index for this scene (inclusive)"),
    dialogueEnd: z.number().describe("Ending dialogue index for this scene (exclusive)"),
});
 
export type Scene = z.infer<typeof SceneSchema>;