feat(distill,conversations,scheduler,api,ui): close deep chats with a distiller fork, digest and index, idle and weekly state jobs

This commit is contained in:
hh
2026-08-29 03:15:39 +02:00
parent ab9ce50b82
commit 23cfb16228
11 changed files with 1103 additions and 19 deletions
+11
View File
@@ -234,6 +234,17 @@ export class ApiClient {
return this.post(`/api/conversations/${id}/merge`);
}
close(id: string): Promise<{
id: string;
status: string;
fork?: string;
text?: string;
digest?: string | null;
error?: string | null;
}> {
return this.post(`/api/conversations/${id}/close`);
}
bind(
id: string,
frontend: string,