uc info¶
Display the provenance manifest of a downloaded UltraCompress artifact.
Synopsis¶
Arguments¶
| Argument | Required | Description |
|---|---|---|
<path> |
yes | Path to a directory or ultracompress.json file from a Sipsa-compressed pack (downloaded via huggingface-cli download) |
Output¶
UltraCompress v0.6.11 · https://sipsalabs.com
Extreme compression for large language models. Patent pending
UltraCompress artifact: sipsalabs/<model-id>
─────────────────────────────────────────────────
Base model: Qwen/Qwen3-1.7B
Method: uc-v3 near-lossless 5-bit
Bits/weight: 5
Size: 1.04 GB
SHA-256: a3f5c8... (verified ✓)
License: research-free; commercial requires separate license
Patents: patent pending (filed April 2026)
Files:
model.safetensors 1116691072 bytes
tokenizer.json 2734851 bytes
config.json 4276 bytes
ultracompress.json 1842 bytes
Manifest schema¶
The ultracompress.json file is a JSON document with the following fields. See Manifest schema for the formal schema.
{
"schema_version": "1.0",
"model_id": "sipsalabs/<model-id>",
"base_model": "Qwen/Qwen3-1.7B",
"method": "uc-v3",
"method_version": "3.0",
"bpw": 5,
"size_bytes": 1116691072,
"files": {
"model.safetensors": {
"sha256": "a3f5c8...",
"size_bytes": 1116691072
}
},
"license": "sipsalabs-research-eval-1.0",
"patents": ["patent pending"],
"created_at": "2026-05-15T12:00:00Z",
"tooling_version": "ultracompress-internal-publishing/0.3.2"
}
Behavior¶
- Locates
ultracompress.jsoneither in the directory you passed, or treats the path as the manifest file directly. - Verifies
model.safetensorsSHA-256 against the manifest if both are present. - Returns 0 on success; 1 if no manifest found.
Examples¶
# Inspect a downloaded artifact
uc info ./models/sipsalabs_<model-id>
# Inspect a manifest file directly
uc info ./models/sipsalabs_<model-id>/ultracompress.json
Exit codes¶
| Code | Meaning |
|---|---|
| 0 | Manifest found and printed |
| 1 | No manifest found at the given path |
| 2 | Invalid arguments (Click default) |
Failure modes¶
- Path doesn't exist → exit 2 with Click's standard error
- Path is a directory but contains no
ultracompress.json→ exit 1 with "No ultracompress metadata found at<path>" - Path is
ultracompress.jsonbut corrupt → exit 1 with parse error - Path is a manifest but the referenced
model.safetensorsSHA mismatches → prints with "verified ✗" warning but still exits 0 (re-download viahuggingface-cli download)
See also¶
- Downloading a compressed model — download an artifact via
huggingface-cli uc bench— benchmark the artifact on downstream tasks- Manifest schema — formal schema documentation