Osaurus-AI commited on
Commit
e15b2f3
·
verified ·
1 Parent(s): 3947838

docs: prepend REQUIRED warning — jangtq_runtime.safetensors sidecar must be downloaded

Browse files
Files changed (1) hide show
  1. README.md +18 -10
README.md CHANGED
@@ -19,21 +19,29 @@ tags:
19
  - jangtq2
20
  - reap
21
  ---
22
- > ## ⚠️ IMPORTANTRe-download required if you pulled before 2026-04-25
23
  >
24
- > This bundle was published in two commits: the initial commit had only the
25
- > quantized weight shards, and the codebook + Hadamard-rotation sidecar
26
- > (`jangtq_runtime.safetensors`) was uploaded ~2.1h later.
27
- >
28
- > **OsaurusAI bundles are loaded by the Osaurus Swift app via the native
29
- > JANGTQ runtime `jangtq_runtime.safetensors` is required.** Without it,
30
- > the loader cannot reconstruct the codebook used during quantization and
31
- > output is incoherent.
 
 
 
32
  >
33
- > **Action:** re-pull the bundle (or just download the single file):
34
  > ```bash
35
  > hf download OsaurusAI/MiniMax-M2.7-Small-JANGTQ jangtq_runtime.safetensors --local-dir <your-dir>
36
  > ```
 
 
 
 
 
37
 
38
 
39
 
 
19
  - jangtq2
20
  - reap
21
  ---
22
+ > ## ⚠️ REQUIRED`jangtq_runtime.safetensors` sidecar must be downloaded
23
  >
24
+ > Osaurus uses the native Swift JANGTQ runtime. **Every JANGTQ bundle on
25
+ > OsaurusAI ships a small `jangtq_runtime.safetensors` sidecar (~10 KB–~165 KB)
26
+ > alongside the weight shards.** The Swift loader will refuse to start with
27
+ > the error
28
+ > ```
29
+ > Error: Model '<name>' declares JANGTQ (weight_format: "mxtq") but is
30
+ > missing required sidecar file 'jangtq_runtime.safetensors'.
31
+ > Re-download the full model or obtain the sidecar from the original
32
+ > publisher.
33
+ > ```
34
+ > if the file is absent.
35
  >
36
+ > If your local copy doesn't have it (older download, partial sync, etc):
37
  > ```bash
38
  > hf download OsaurusAI/MiniMax-M2.7-Small-JANGTQ jangtq_runtime.safetensors --local-dir <your-dir>
39
  > ```
40
+ > The file holds the deterministic codebooks + Hadamard rotation signs the
41
+ > Swift loader uses to decode `*.tq_packed` weights. It must match the seed
42
+ > the bundle was quantized with (`mxtq_seed=42`).
43
+
44
+
45
 
46
 
47