LLMRing core server: alias sync, receipts, and usage logging (key-scoped, no users)
Project description
LLMRing Server
Self-hostable backend for the LLMRing project. It adds optional capabilities on top of the lockfile-only workflow, aligned with source-of-truth v3.5:
- Project-scoped alias sync (with profiles)
- Usage logging and simple stats
- Receipt issuance and verification (Ed25519 over RFC 8785 JCS-canonicalized JSON)
- Read-only access to the public model registry (proxied from GitHub Pages)
This service is optional. LLMRing works fully in lockfile-only mode; run this server when you want centralized alias sync, receipts, and usage stats.
Quick start
Requirements:
- Python 3.10+
- PostgreSQL (reachable from the server)
Install and run:
# from repo root or this directory
uv run llmring-server --reload
# or
uv run python -m llmring_server.cli --reload
By default the server listens on http://0.0.0.0:8000 and exposes Swagger UI at /docs.
Configuration
Configuration is provided via environment variables (Pydantic Settings). Key variables:
- LLMRING_DATABASE_URL: PostgreSQL connection string (default: postgresql://localhost/llmring)
- LLMRING_DATABASE_SCHEMA: Schema name (default: llmring)
- LLMRING_DATABASE_POOL_SIZE: Connection pool size (default: 20)
- LLMRING_DATABASE_POOL_OVERFLOW: Pool overflow (default: 10)
- LLMRING_REDIS_URL: Redis URL for caching (default: redis://localhost:6379/0)
- LLMRING_CACHE_TTL: Cache TTL seconds (default: 3600)
- LLMRING_CORS_ORIGINS: Comma-separated origins (default: http://localhost:5173,http://localhost:5174,*)
- LLMRING_REGISTRY_BASE_URL: Base URL for the public registry (default: https://llmring.github.io/registry/)
- LLMRING_RECEIPTS_PRIVATE_KEY_B64: Base64url Ed25519 private key (for receipt issuance)
- LLMRING_RECEIPTS_PUBLIC_KEY_B64: Base64url Ed25519 public key (for verification)
- LLMRING_RECEIPTS_KEY_ID: Identifier for current signing key
Minimal required: set LLMRING_DATABASE_URL to a reachable Postgres instance. If you plan to issue receipts, also set the signing key variables.
Authentication model
- Project-scoped via
X-Project-Keyheader - No user management in this service
- The same project can carry separate alias bindings by profile (e.g.,
dev,prod).
Security notes:
- The
X-Project-Keymust be treated as a secret. Do not expose it publicly. - The server validates the header is present, non-empty, below 256 chars, and without whitespace.
- In production, set narrow
LLMRING_CORS_ORIGINS(avoid*) and deploy behind TLS.
Endpoints
Public:
- GET
/→ service info - GET
/health→ DB health - GET
/registry(and/registry.json) → aggregated provider registry (fetched from GitHub Pages) - GET
/receipts/public-key.pem→ current public key in PEM - GET
/receipts/public-keys.json→ list of available public keys
Project-scoped (require header X-Project-Key):
- Aliases (
/api/v1/aliases/...)- GET
/→ list aliases (optional?profile=) - POST
/bind→{ alias, model, profile?, metadata? } - GET
/resolve?alias=NAME&profile=default→{ alias, model } - GET
/{alias}?profile=default - PUT
/{alias}→{ model, profile?, metadata? } - DELETE
/{alias}?profile=default - POST
/bulk_upsert?profile=default→ body:[ { alias, model, metadata? }, ... ]
- GET
- Usage (
/api/v1/log,/api/v1/stats)- POST
/api/v1/log→{ provider, model, input_tokens, output_tokens, cached_input_tokens?, alias?, profile?, cost? } - GET
/api/v1/stats?start_date=&end_date=&group_by=day
- POST
- Receipts (
/api/v1/receipts/...)- POST
/store a signed receipt{ receipt: {...} }(server verifies signature) - GET
/{receipt_id}fetch stored receipt - POST
/issueissue a signed receipt from an unsigned payload (requires configured signing key)
- POST
Security notes:
- Stats and logs are key-scoped; ensure you send the right project header to avoid data leakage across projects.
- Receipts verification requires
LLMRING_RECEIPTS_PUBLIC_KEY_B64to be configured; otherwise signatures are rejected.
Receipts
- Signature: Ed25519 over RFC 8785 JSON Canonicalization Scheme (JCS)
- Signature format:
ed25519:<base64url> - Receipt fields (subset):
id,timestamp,model,alias,profile,lock_digest,key_idtokens: { input, output, cached_input }cost: { amount, calculation }signature
- Public keys are available at
/receipts/public-key.pemand/receipts/public-keys.json.
Registry
The server proxies the public registry hosted at https://llmring.github.io/registry/. Models are returned with provider-prefixed keys (e.g., openai:gpt-4o-mini). Responses are cached in Redis when configured.
Development
Install dev dependencies and run:
# run tests
uv run pytest -q
# run the server in reload mode
uv run llmring-server --reload
The project uses:
- FastAPI for HTTP API
- pgdbm for Postgres migrations and access
- httpx for outbound HTTP
- redis (optional) for caching
- cryptography + pynacl for receipts
Security Checklist
- Set
LLMRING_CORS_ORIGINSto explicit origins (not*) in production - Serve behind TLS (reverse proxy like nginx or cloud load balancer)
- Store and rotate
X-Project-Keyvalues securely; consider per-env keys - Configure
LLMRING_RECEIPTS_PUBLIC_KEY_B64andLLMRING_RECEIPTS_PRIVATE_KEY_B64for receipts - Restrict egress if running in sensitive environments; registry fetches use outbound HTTP
- Enable Redis with authentication (set
LLMRING_REDIS_URL) if caching is needed
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 llmring_server-0.1.0.tar.gz.
File metadata
- Download URL: llmring_server-0.1.0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17245d9221316b50166b6b9a62bf82cab870f7f1013333b7039616ab66a0ab8f
|
|
| MD5 |
44283c009d15952a12fb1eb64f0d4aac
|
|
| BLAKE2b-256 |
f812314306c1639829d8a9b59acb53a747f7c991f3b333f75a120f54c638e7e6
|
File details
Details for the file llmring_server-0.1.0-py3-none-any.whl.
File metadata
- Download URL: llmring_server-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8eb8d72ac3e7bb36bc3bcec9f0884657d0098d260bf87a0d86a5b95141579e3
|
|
| MD5 |
630c0af80aca8fc162bfeb63105ce17b
|
|
| BLAKE2b-256 |
c0f1453fbdaec8e4c629d833838b505d1486dcf5df299f76e370b71deaa6e22e
|