Hippius Hub — Drop-in for huggingface_hub
A Rust-powered Python client + CLI for an OCI registry at registry.hippius.com. Change one import line and your huggingface_hub code keeps working — pull, push, search, no rewrites.
$ pip install hippius_hubHIPPIUS HUB
Keep using huggingface_hub idioms. Push to your own OCI registry. Pull faster with parallel Rust. Find what you need with a real model index.
Same import paths, same signatures, same exception types. `from hippius_hub import hf_hub_download` works where the HF call worked — transformers, diffusers, datasets read the cache unchanged.
Models live as OCI artifacts at registry.hippius.com — docker / oras / podman / hippius-hub all push and pull the same bytes. Multi-region edge cache (EU + US).
PyO3 extension fans Range requests across parallel TCP. Cache-hit blob pulls peak at 780 MB/s — 4.4× faster than HuggingFace cold on the same hardware.
Every push is parsed server-side (GGUF, safetensors, ONNX, Diffusers). Search by format, architecture, parameter count, quantization — no manual metadata.
DEVELOPER
Pick your interface. Same bytes, same model index, same docker creds across CLI and Python.
One-line drop-in swap
Change the import, keep the rest. The cache layout matches HuggingFace byte-for-byte so transformers/diffusers from_pretrained Just Works.
drop_in.py
01# Before:02# from huggingface_hub import hf_hub_download, snapshot_download, upload_folder0304from hippius_hub import hf_hub_download, snapshot_download, upload_folder, login0506# Authenticate once — token at https://console.hippius.com/dashboard/settings07login(token="hf_xxx")0809# Pull one file10path = hf_hub_download(11repo_id="myorg/qwen-7b",12filename="model.safetensors",13revision="v1",14)1516# Pull a whole revision in parallel17local_dir = snapshot_download(18repo_id="myorg/qwen-7b",19revision="v1",20allow_patterns=["*.safetensors", "*.json"],21max_workers=8,22)2324# Push the same way you would to HF25upload_folder(26folder_path="./checkpoints",27repo_id="myorg/qwen-7b",28revision="v1",29)3031# transformers/diffusers natively load from the Hippius cache32import hippius_hub as huggingface_hub # drop-in swap33from transformers import AutoModel34model = AutoModel.from_pretrained("myorg/qwen-7b")
PRICING
Prices in USD, billed monthly from your Hippius credits balance. Subscriptions live on-chain through the Marketplace pallet — cancel any time, 30-day grace before anything is deleted.
Free
Free
Forever
Builder
$5
per month
Pro
$19
per month
Team
$99
per month
Live plan data from api.hippius.com/api/registry/plans/.
Hippius
The reliable and preferred storage solutions for businesses