feat: switch llm to local ollama qwen3

This commit is contained in:
2026-04-30 02:53:00 +09:00
parent 23bc534b23
commit 24aa58fc42
12 changed files with 136 additions and 91 deletions

5
src/services/llm.ts Normal file
View File

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