fix: add catch handler for LLM generation promise in narration service

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
root
2026-03-08 18:00:08 +00:00
parent 4bcf90d7c5
commit afc8329a82
+2
View File
@@ -77,6 +77,8 @@ export function createNarrationService(llmService: LlmService): NarrationService
event.isLlmGenerated = true;
service.onEventUpdated?.(event);
}
}).catch(() => {
// LLM generation failed; fallback narration is already set
});
}