Compare commits

..
Author SHA1 Message Date
Renovate Bot 2caeba1f1d chore(deps): update all non-major dependencies
renovate/stability-days Updates have met minimum release age requirement
PR / lint (pull_request) Successful in 24s
PR / test-coverage (pull_request) Successful in 27s
2026-06-29 21:02:11 +00:00
5 changed files with 441 additions and 402 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ jobs:
uses: https://git.keligrubb.com/actions/checkout@v7 uses: https://git.keligrubb.com/actions/checkout@v7
- name: Setup Node - name: Setup Node
uses: https://git.keligrubb.com/actions/setup-node@v7 uses: https://git.keligrubb.com/actions/setup-node@v6
with: with:
node-version: "24" node-version: "24"
cache: "npm" cache: "npm"
@@ -31,7 +31,7 @@ jobs:
uses: https://git.keligrubb.com/actions/checkout@v7 uses: https://git.keligrubb.com/actions/checkout@v7
- name: Setup Node - name: Setup Node
uses: https://git.keligrubb.com/actions/setup-node@v7 uses: https://git.keligrubb.com/actions/setup-node@v6
with: with:
node-version: "24" node-version: "24"
cache: "npm" cache: "npm"
+3 -3
View File
@@ -22,7 +22,7 @@ jobs:
uses: https://git.keligrubb.com/actions/checkout@v7 uses: https://git.keligrubb.com/actions/checkout@v7
- name: Setup Node - name: Setup Node
uses: https://git.keligrubb.com/actions/setup-node@v7 uses: https://git.keligrubb.com/actions/setup-node@v6
with: with:
node-version: "24" node-version: "24"
cache: "npm" cache: "npm"
@@ -34,7 +34,7 @@ jobs:
run: npm start run: npm start
- name: Upload PDF artifact - name: Upload PDF artifact
uses: https://git.keligrubb.com/actions/upload-artifact@v7 uses: https://git.keligrubb.com/actions/upload-artifact@v3
with: with:
name: release-pdf name: release-pdf
path: "*.pdf" path: "*.pdf"
@@ -47,7 +47,7 @@ jobs:
GITEA_TOKEN: ${{ secrets.SCROLLSMITH_GITEA_TOKEN }} GITEA_TOKEN: ${{ secrets.SCROLLSMITH_GITEA_TOKEN }}
steps: steps:
- name: Download PDF artifact - name: Download PDF artifact
uses: https://git.keligrubb.com/actions/download-artifact@v8 uses: https://git.keligrubb.com/actions/download-artifact@v3
with: with:
name: release-pdf name: release-pdf
path: . path: .
+429 -390
View File
File diff suppressed because it is too large Load Diff
+6 -6
View File
@@ -15,15 +15,15 @@
"license": "SEE LICENSE IN README.md", "license": "SEE LICENSE IN README.md",
"description": "", "description": "",
"dependencies": { "dependencies": {
"dotenv": "^17.4.2", "dotenv": "^17.2.1",
"puppeteer": "^25.3.0", "puppeteer": "^25.0.0",
"sharp": "^0.35.3" "sharp": "^0.35.0"
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^10.0.1", "@eslint/js": "^10.0.0",
"@vitest/coverage-v8": "^4.0.18", "@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.7.0", "eslint": "^10.0.0",
"globals": "^17.7.0", "globals": "^17.0.0",
"vitest": "^4.0.18" "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; const OLLAMA_API_URL = process.env.OLLAMA_API_URL;
export const OLLAMA_MODEL = "qwen3.6-35b-a3b"; export const OLLAMA_MODEL = "qwen3.5-122b-a10b";
function effectiveModel(explicit) { function effectiveModel(explicit) {
if (explicit !== undefined && explicit !== null) return explicit; if (explicit !== undefined && explicit !== null) return explicit;