Pull open-weight AI models from the ossllms torrent network. A drop-in for huggingface_hub.
Project description
ossllms (Python SDK + CLI)
Pull open-weight AI models from the ossllms preservation
network. A drop-in for huggingface_hub that resolves from the torrent layer,
verifies integrity + publisher signature, and lands files in the HF-compatible
cache. Full design: ../docs/SDK.md and
../docs/INTEROP-HF.md.
Install
python -m pip install ossllms
CLI (simplest UI)
ossllms search minilm # find a useful default-catalog model
ossllms pull hf/sentence-transformers/all-MiniLM-L6-v2@0.0.1+1110a243fdf4
ossllms pull hf/sentence-transformers/all-MiniLM-L6-v2@0.0.1+1110a243fdf4 --seed
ossllms contribute # start/attach to the managed seed worker
ossllms pull sha256:<64-hex> # resolve by catalog hash index
ossllms publish ./model # TTY: prompt/infer, sign, optionally seed
ossllms publish ./model --seed --yes-public # automation: publish and seed local bytes
ossllms contribute --dry-run # preview seed/publish candidates and caps
ossllms contribute --publish # TTY: choose publish/seed rows, consent, then seed
ossllms contribute --publish --yes-public # automation: publish selected cache candidates, then seed
ossllms contribute # attach to/start managed seed handoff worker
ossllms contribute --status # show worker metrics
ossllms contribute --stop # stop worker
ossllms ls # what's cached
ossllms verify hf/sentence-transformers/all-MiniLM-L6-v2@0.0.1+1110a243fdf4
If no catalog is configured, the packaged signed default catalog is used. Set
OSSLLMS_CATALOG=https://catalog.ossllms.com or pass --catalog ... for a
custom directory or http(s) catalog.
Python
from ossllms import snapshot_download, hf_hub_download, pull
path = snapshot_download("hf/sentence-transformers/all-MiniLM-L6-v2@0.0.1+1110a243fdf4")
cfg = hf_hub_download(
"hf/sentence-transformers/all-MiniLM-L6-v2",
"config.json",
revision="0.0.1+1110a243fdf4",
)
res = pull("hf/sentence-transformers/all-MiniLM-L6-v2@0.0.1+1110a243fdf4")
print(res.verdict.label, res.verdict.signer) # "Verified" / signer
import ossllms.compat # opt-in: route huggingface_hub downloads through ossllms
What's built
pull: resolve signed manifest → download via HTTP web seeds (works today;file://supported) → verify every file's SHA-256, v2 root, and minisign/Ed25519 signature → place in HF cache. Integrity always enforced; origin shown as Verified/Unverified (--require-signatureto enforce).pull --seedstarts the managed contribution worker for the pulled snapshot when the catalog has matching torrent metadata.- Store-qualified refs,
sha256:refs, and catalog-pairedmagnet:refs. publish: build and sign a public redistribution bundle from a local model directory; optionally update a static V0 catalog/hash index with--catalog-dir, and start the managed seed worker directly from the local directory with--seed.contribute --dry-run: scans local HF cache roots, matches catalog hashes, shows seed/publish candidates, public-publish warnings, and upload caps.contribute: attaches to an active managed worker or starts one for complete in-network seed matches, persisting upload caps, zero-download seed metrics, and a worker plan. In a terminal it renders the scan plan, lets the user select publish/seed rows, shows caps, and requires public redistribution consent before publish writes. Whenrelease.torrentmetadata is available besiderelease.json, the worker starts libtorrent seed mode from a hardlink-only view of the HF cache.- Worker-state, HF metadata, provenance, and seed-mode handoff primitives.
huggingface_hub-compatiblesnapshot_download/hf_hub_download+compatshim.- Manifest schema validation, trust store (pinned keys), selective
--include. - libtorrent swarm engine: download scaffold plus live contribute seed adapter included in the default install. Local two-peer E2E gates prove fixture, direct-publish, and contribute-publish no-web-seed swarms over libtorrent.
- Bundled default MiniLM metadata includes
release.torrent, so the post-pull default contribution path can start live seed mode on the supported CPython release plane.
Develop / test
python -m venv .venv
.venv/bin/pip install -e '.[dev]'
.venv/bin/pytest # or: PYTHONPATH=. .venv/bin/pytest tests
Verified = verified origin + integrity (+ a matches HF badge). It does
not mean the weights are safe to run.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ossllms-0.2.2.tar.gz.
File metadata
- Download URL: ossllms-0.2.2.tar.gz
- Upload date:
- Size: 147.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be36c4adcb25472fd5c258f5e9dfdbf6b64dbc2d1343049f2f48bf27fe74f473
|
|
| MD5 |
16c5acb3db764184a95ff4ffe8f3422b
|
|
| BLAKE2b-256 |
11b24413a53821f446e2f050f9dffa27b85dc0fca5d72fbc84be094142f49ecd
|
File details
Details for the file ossllms-0.2.2-py3-none-any.whl.
File metadata
- Download URL: ossllms-0.2.2-py3-none-any.whl
- Upload date:
- Size: 135.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc17d4650b8a29972434e419d2e7e8e1c6da0e4edda9cd3cc4849e65a7faaa93
|
|
| MD5 |
9baf4b8101593419485ac30f52333023
|
|
| BLAKE2b-256 |
607735361bba7e26fb3c91346dac8100921c222d080a6e9688bcc3bcfb9fe77c
|