diff --git a/www/app/transcripts/useWebSockets.ts b/www/app/transcripts/useWebSockets.ts index 7bde6d9b..cbe257a7 100644 --- a/www/app/transcripts/useWebSockets.ts +++ b/www/app/transcripts/useWebSockets.ts @@ -93,6 +93,7 @@ export const useWebSockets = (transcriptId: string | null): UseWebSockets => { console.debug("TOPIC event:", message.data); break; + case "FINAL_LONG_SUMMARY": case "FINAL_SUMMARY": if (message.data) { setFinalSummary(message.data); @@ -100,6 +101,14 @@ export const useWebSockets = (transcriptId: string | null): UseWebSockets => { } break; + case "FINAL_SHORT_SUMMARY": + console.debug("FINAL_SHORT_SUMMARY event:", message.data); + break; + + case "FINAL_TITLE": + console.debug("FINAL_TITLE event:", message.data); + break; + case "STATUS": setStatus(message.data); break;