feat: switch llm to local ollama qwen3
This commit is contained in:
5
src/services/llm.ts
Normal file
5
src/services/llm.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import type { ConversationMemory, UserUtterance } from "./conversation.js";
|
||||
|
||||
export interface LlmService {
|
||||
generateReply(memory: ConversationMemory, utterance: UserUtterance): Promise<string>;
|
||||
}
|
||||
Reference in New Issue
Block a user