Spaces:
Running
Running
Upload index.html with huggingface_hub
Browse files- index.html +2 -0
index.html
CHANGED
|
@@ -48,6 +48,8 @@ let m = pick ? (MODELS.find((x) => new RegExp(pick, "i").test(x.name)) || MODELS
|
|
| 48 |
const sm = params.get("stream");
|
| 49 |
if (sm && sm !== "false" && sm !== "resident") m = { ...m, stream: sm };
|
| 50 |
}
|
|
|
|
|
|
|
| 51 |
|
| 52 |
// GROUND the model as on-device Q (a base/instruct model has NO self-knowledge — without this it confabulates
|
| 53 |
// a generic "I run on OpenAI/AWS cloud servers" identity, which is false). Injected as the SYSTEM turn.
|
|
|
|
| 48 |
const sm = params.get("stream");
|
| 49 |
if (sm && sm !== "false" && sm !== "resident") m = { ...m, stream: sm };
|
| 50 |
}
|
| 51 |
+
// ?verify=gpu → re-derive each BLAKE3 weight-block κ ENTIRELY on the GPU (2.74 GB/s) instead of pure-JS BLAKE3.
|
| 52 |
+
if (params.get("verify") === "gpu") globalThis.__gpuVerify = true;
|
| 53 |
|
| 54 |
// GROUND the model as on-device Q (a base/instruct model has NO self-knowledge — without this it confabulates
|
| 55 |
// a generic "I run on OpenAI/AWS cloud servers" identity, which is false). Injected as the SYSTEM turn.
|