diff --git a/e2e/e3-debug.mjs b/e2e/e3-debug.mjs index dd46660..d5d1eaa 100644 --- a/e2e/e3-debug.mjs +++ b/e2e/e3-debug.mjs @@ -4,7 +4,7 @@ const p = await b.newPage() await p.goto("https://interscript.org/neural", { waitUntil: "networkidle" }) const res = await p.evaluate(async () => { try { - const r = await fetch("https://github.com/interscript/interscript-ml/releases/download/index-v2/models-index.yaml.sha256") + const r = await fetch("https://github.com/interscript/interscript-ml/releases/download/index-v3/models-index.yaml.sha256") return `ok ${r.status}` } catch (e) { return `FAIL ${e.message} | ${e.cause?.message ?? ""}` } }) diff --git a/src/pages/neural.astro b/src/pages/neural.astro index 376ad55..b041702 100644 --- a/src/pages/neural.astro +++ b/src/pages/neural.astro @@ -16,6 +16,8 @@ import Base from "../layouts/Base.astro"