Add chat log download menu

This commit is contained in:
Ramnique Singh 2026-05-27 23:17:47 +05:30
parent 89f6f80215
commit 2f9ce051c0
4 changed files with 149 additions and 2 deletions

View file

@ -246,6 +246,15 @@ const ipcSchemas = {
}),
res: z.object({ success: z.boolean() }),
},
'runs:downloadLog': {
req: z.object({
runId: z.string().min(1),
}),
res: z.object({
success: z.boolean(),
error: z.string().optional(),
}),
},
'runs:events': {
req: z.null(),
res: z.null(),