feat: link artifacts to source chat

This commit is contained in:
CREDO23 2026-06-23 15:47:21 +02:00
parent 9c622ae3f3
commit 8b0a2f8964
10 changed files with 44 additions and 7 deletions

View file

@ -163,6 +163,7 @@ export const podcastSummary = z.object({
status: podcastStatus,
created_at: z.string(),
search_space_id: z.number(),
thread_id: z.number().nullish(),
});
export type PodcastSummary = z.infer<typeof podcastSummary>;

View file

@ -17,6 +17,7 @@ export const reportListItem = z.object({
title: z.string(),
content_type: z.string().default("markdown"),
report_metadata: reportMetadata,
thread_id: z.number().nullish(),
created_at: z.string(),
});
export type ReportListItem = z.infer<typeof reportListItem>;

View file

@ -13,6 +13,7 @@ export const videoPresentationListItem = z.object({
status: videoPresentationStatus.default("ready"),
created_at: z.string(),
search_space_id: z.number(),
thread_id: z.number().nullish(),
});
export type VideoPresentationListItem = z.infer<typeof videoPresentationListItem>;