The models the EU operator will serve at mainnet · famous open-weight models that fit the phase-0 cluster
| # | Model | Pipeline | Library | License | Status |
|---|---|---|---|---|---|
| Loading… | |||||
Rust 1.80+ · macOS · Linux · Windows
# Requires Rust 1.80+. $ cargo install --git https://github.com/Concordfaces/concord concord-cli $ concord --version
# Linux / macOS — shasum-verified install $ curl -fsSL https://concordfaces.org/install.sh | sh # Windows (PowerShell) PS> iwr https://concordfaces.org/install.ps1 -useb | iex # From source $ git clone https://github.com/Concordfaces/concord $ cd concord && cargo build --release $ ./target/release/concord --help
Verified ed25519 signature · content-addressed blake3 chunks
# Pull a model from the EU operator. $ concord pull sentence-transformers/all-MiniLM-L6-v2 # Verify the manifest signature + every chunk digest. $ concord verify sentence-transformers/all-MiniLM-L6-v2 # Pull a specific version (omit for latest signed). $ concord pull BAAI/bge-small-en-v1.5:v1 # Show local cache. $ concord list --cached
api.eu.concordfaces.org for the EU operator. Override with --endpoint https://api.<op>.concordfaces.org or set CONCORD_ENDPOINT. Cache lives at ~/.cache/concord (override with CONCORD_CACHE or $XDG_CACHE_HOME/concord).
Drop-in compatibility · zero code changes for most pipelines
api.<op>.concordfaces.org/hf.
HF_ENDPOINT and any tool that respects
it routes through Concordfaces — no client patching.
~/.cache/huggingface/hub,
so transformers, sentence-transformers, diffusers, and vLLM pick them up unchanged.
$ pip install huggingface_hub $ export HF_ENDPOINT=https://api.eu.concordfaces.org/hf $ huggingface-cli download \ sentence-transformers/all-MiniLM-L6-v2 # Files land in the standard HF cache layout. # ~/.cache/huggingface/hub/models--<org>--<name>/
# Either set the env var once … $ export HF_ENDPOINT=https://api.eu.concordfaces.org/hf # … or pass `endpoint=` explicitly per call. >>> from huggingface_hub import snapshot_download >>> snapshot_download( ... "BAAI/bge-small-en-v1.5", ... endpoint="https://api.eu.concordfaces.org/hf", ... )
concord over huggingface-cli?
The native client streams signed manifest envelopes and verifies every blake3 chunk against
the operator's ed25519 key on the wire — the HF shim is byte-for-byte compatible but the
signature check happens server-side. Use concord verify after an HF-style pull
if you need end-to-end proof.
concord token mint) and are logged per manifest by the
serving operator, regardless of which client you use.