mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-30 21:59:46 +02:00
feat: link artifacts to source chat
This commit is contained in:
parent
9c622ae3f3
commit
8b0a2f8964
10 changed files with 44 additions and 7 deletions
|
|
@ -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>;
|
||||
|
||||
|
|
|
|||
|
|
@ -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>;
|
||||
|
|
|
|||
|
|
@ -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>;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue