mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-25 18:55:19 +02:00
8 lines
300 B
TypeScript
8 lines
300 B
TypeScript
import z from 'zod';
|
|
|
|
export const PromptBlockSchema = z.object({
|
|
label: z.string().min(1).describe('Short title shown on the card'),
|
|
instruction: z.string().min(1).describe('Full prompt sent to Copilot when Run is clicked'),
|
|
});
|
|
|
|
export type PromptBlock = z.infer<typeof PromptBlockSchema>;
|