draft email options

This commit is contained in:
Arjun 2026-03-23 23:04:22 +05:30 committed by arkml
parent 2d62824030
commit fa07a75358
4 changed files with 190 additions and 9 deletions

View file

@ -70,6 +70,7 @@ export const EmailBlockSchema = z.object({
latest_email: z.string(),
past_summary: z.string().optional(),
draft_response: z.string().optional(),
response_mode: z.enum(['inline', 'assistant', 'both']).optional(),
});
export type EmailBlock = z.infer<typeof EmailBlockSchema>;