Use an even better model

This commit is contained in:
William Jeynes
2026-03-26 15:14:43 +00:00
parent c7cccb87c3
commit 38b6fb6a0e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ export function createModelNode(tools: any, promptPath: string): GraphNode<typeo
const sysPrompt = await hydratePrompt(promptPath, state);
const model = new ChatOpenAI({
model: "gpt-5.4-mini"
model: "gpt-5.4"
});
const modelWithTools = model.bindTools(Object.values(tools));
+1 -1
View File
@@ -8,7 +8,7 @@ export async function extractWebpageContent(url: string): Promise<string[]> {
const response = await backOff(async () => {
return await extractWebpageContentWorker(url);
}, {
numOfAttempts: 10,
numOfAttempts: 5,
startingDelay: 500,
timeMultiple: 2,
jitter: "full",