download notes

This commit is contained in:
Arjun 2026-03-13 21:19:51 +05:30
parent 604d521ac2
commit 26bf21d4da
8 changed files with 514 additions and 3 deletions

View file

@ -481,6 +481,17 @@ const ipcSchemas = {
}),
},
// Inline task schedule classification
'export:note': {
req: z.object({
markdown: z.string(),
format: z.enum(['md', 'pdf', 'docx']),
title: z.string(),
}),
res: z.object({
success: z.boolean(),
error: z.string().optional(),
}),
},
'inline-task:classifySchedule': {
req: z.object({
instruction: z.string(),