Improve local startup checks and Korean STT defaults

This commit is contained in:
2026-04-30 18:08:38 +09:00
parent 4c7cef8c18
commit 645a5109a2
6 changed files with 92 additions and 31 deletions

View File

@@ -1,5 +1,6 @@
import type { ConversationMemory, UserUtterance } from "./conversation.js";
export interface LlmService {
warmup?(): Promise<void>;
generateReply(memory: ConversationMemory, utterance: UserUtterance): Promise<string>;
}