cvpilot-tool/apps/desktop/electron/ipcEvent/llm/index.ts
2024-09-24 15:18:16 +08:00

12 lines
332 B
TypeScript

import { ipcMain } from "electron";
import { ollama, run } from "../../core/ollama";
export const registerOllama = async () => {
// const list = await ollama.list();
// console.log(list);
ipcMain.handle("chat", async (_event, input: string) => {
const answer = await run("qwen2.5:3B", input);
return answer;
});
};