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
@@ -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",