From 6a39ec2ae5f704183725bdd8227be0edd9cfe389 Mon Sep 17 00:00:00 2001 From: Ronald Tse Date: Fri, 4 Sep 2026 11:36:49 +0200 Subject: [PATCH] feat(neural): lite int4 + 2.1 in the demo, index pinned to v3 The dropdown leads with the browser-budget artifact (95MB int4 depth-cut student) and gains the 2.1 rung; the asset index pin moves to index-v3 (22-model surface). --- e2e/e3-debug.mjs | 2 +- src/pages/neural.astro | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) 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"