From 2e259fcb8f7ddadd0d084e0988ed7573c39dbe8f Mon Sep 17 00:00:00 2001 From: jhyang0 Date: Tue, 8 Jul 2025 15:47:04 +0900 Subject: [PATCH] summary fixed --- src/features/listen/summary/summaryService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/listen/summary/summaryService.js b/src/features/listen/summary/summaryService.js index 9f3a811..53d3b79 100644 --- a/src/features/listen/summary/summaryService.js +++ b/src/features/listen/summary/summaryService.js @@ -115,7 +115,7 @@ Please build upon this context while analyzing the new conversation segments. await sessionRepository.touch(this.currentSessionId); } - const modelInfo = await getCurrentModelInfo('llm'); + const modelInfo = await getCurrentModelInfo(null, { type: 'llm' }); if (!modelInfo || !modelInfo.apiKey) { throw new Error('AI model or API key is not configured.'); }