⚠️ REQUIRED — jangtq_runtime.safetensors sidecar must be downloaded
Osaurus uses the native Swift JANGTQ runtime. Every JANGTQ bundle on
OsaurusAI ships a small jangtq_runtime.safetensors sidecar (~10 KB–~165 KB)
alongside the weight shards. The Swift loader will refuse to start with
the error
Error: Model '<name>' declares JANGTQ (weight_format: "mxtq") but is
missing required sidecar file 'jangtq_runtime.safetensors'.
Re-download the full model or obtain the sidecar from the original
publisher.
if the file is absent.
If your local copy doesn't have it (older download, partial sync, etc):
The file holds the deterministic codebooks + Hadamard rotation signs the
Swift loader uses to decode *.tq_packed weights. It must match the seed
the bundle was quantized with (mxtq_seed=42).
TurboQuant codebook quantization of H Company's Holo3 GUI-agent VLM — routed experts at 4-bit via Lloyd-Max codebooks + Hadamard rotation, attention / embed / shared-expert / lm_head at 8-bit affine, vision tower preserved. The highest-quality JANGTQ profile for this family.
patch_embed.proj axes pre-transposed to MLX layout
JANGTQ ("TurboQuant") stores routed-expert weights as indices into a small Lloyd-Max codebook with a per-row norm, after a randomized Hadamard rotation that concentrates the distribution so quantization error is uniform. At 4-bit, the 16-centroid codebook captures the routed-expert weight distribution tightly enough that this profile is the highest-quality JANGTQ option for qwen3_5_moe — preferred over JANGTQ2 when RAM isn't the bottleneck.
Usage
JANGTQ requires our custom loader — stock mlx_lm.load() can't parse .tq_packed tensors. You need jang-tools (free, public): https://github.com/jjang-ai/jangq.
Parse with a simple XML splitter on <tool_call>. See H Company's quickstart for a full agent harness example.
Video
The base model supports video via transformers and the bundle preserves video_preprocessor_config.json. mlx-vlm 0.4.4's prepare_inputs has no video path yet for qwen3_5_moe — for video, use upstream transformers.
Hardware notes
19.68 GB on disk; expect ~20–22 GB resident after load, plus KV cache.
Mac unified RAM
Works?
Notes
24 GB
✅ text-only
Image inference will be tight at long context
32 GB
✅ comfortable
32 k+ context, comfortable VL
64 GB+
✅ headroom
262 k native context
Upstream benchmarks
These are the base-model numbers for Hcompany/Holo3-35B-A3B, not evaluations of this JANGTQ4 quant:
Benchmark
Score
OSWorld-Verified (computer use)
77.8 % — SOTA at 3 B active
WebArena (web navigation)
State-of-the-art (see upstream card)
ScreenSpot-Pro (UI localization)
Top-tier (see upstream card)
OSWorld-G (visual grounding)
Top-tier (see upstream card)
H Corporate Benchmark (486 enterprise tasks)
Outperforms larger competitors
Independent JANGTQ-quant evaluation is tracked in the jang-tools repo and will land in future README revisions.
Citation
bibtex
1@misc{hai2025holo3modelfamily,
2 title = {Holo3 - Open Foundation Models for Navigation and Computer Use Agents},
3 author = {H Company},
4 year = {2026},
5 url = {https://huggingface.co/Hcompany/Holo3-35B-A3B}
6}