• v4.5.2 5bc69ad9ce

    v4.5.2
    All checks were successful
    Release / Test backend (push) Successful in 6m5s
    Release / Test UI (push) Successful in 1m44s
    Release / Build and push images (push) Successful in 7m6s
    Release / Deploy to prod (push) Successful in 3m47s
    Release / Deploy to homelab (push) Successful in 8s
    Release / Gitea Release (push) Successful in 44s
    Stable

    gitea-actions released this 2026-04-24 18:24:25 +05:00 | -567 commits to main since this release

    Llama 4 Scout returns the model output directly as a JSON array in the
    'response' field rather than as a plain string or [{"generated_text":"..."}].
    The old fallback parsed it as [{"generated_text":""}] (Go JSON ignores
    unknown fields) and silently returned an empty string — causing chapter-names
    jobs to finish with results:null in the payload despite items_done matching
    items_total.

    Fix: only accept the generated_text fallback when the value is non-empty;
    otherwise return the raw JSON bytes as a string so callers (parseChapterTitlesJSON
    etc.) can extract what they need.

    Downloads