Use a slightly smaller model. Reduce concurreny. Be more clear in the prompts

This commit is contained in:
William Jeynes
2026-04-02 20:10:57 +01:00
parent 7e586fe17d
commit 10f2644408
6 changed files with 10 additions and 21 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ export function createModelNode(tools: any, promptPath: string): GraphNode<typeo
const sysPrompt = await hydratePrompt(promptPath, state);
const model = new ChatOllama({
model: "llama3.1:8b-instruct-fp16",
temperature: 0.7,
model: "llama3.1:8b-instruct-q4_K_M",
temperature: 0.3
});
const modelWithTools = model.bindTools(Object.values(tools));