update dependencies and change default model
PR / lint (pull_request) Failing after 6s
PR / test-coverage (pull_request) Failing after 7s

This commit is contained in:
Madison Grubb
2026-07-10 19:34:09 -04:00
parent e621505cf2
commit de20ed9796
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -15,15 +15,15 @@
"license": "SEE LICENSE IN README.md",
"description": "",
"dependencies": {
"dotenv": "^17.2.1",
"puppeteer": "^25.0.0",
"sharp": "^0.35.0"
"dotenv": "^17.4.2",
"puppeteer": "^25.3.0",
"sharp": "^0.35.3"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@eslint/js": "^10.0.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.0",
"globals": "^17.0.0",
"eslint": "^10.7.0",
"globals": "^17.7.0",
"vitest": "^4.0.18"
}
}
+1 -1
View File
@@ -2,7 +2,7 @@ import { cleanText } from "./textUtils.js";
const OLLAMA_API_URL = process.env.OLLAMA_API_URL;
export const OLLAMA_MODEL = "qwen3.5-122b-a10b";
export const OLLAMA_MODEL = "qwen3.6-35b-a3b";
function effectiveModel(explicit) {
if (explicit !== undefined && explicit !== null) return explicit;