Cryptographic, tamper-evident execution receipts for any AI model
Project description
AetherProof
Cryptographic, tamper-evident execution receipts for any AI model.
One call generates a 128-byte Ed25519-signed receipt that proves what model ran and what it produced — verifiable offline by anyone, with no server and no account. Works with Claude, GPT, Gemini, or a local model via Ollama.
Install
pip install aetherproof
Drop-in: one line to a verified receipt
Run a local model and get its answer plus a signed, tamper-evident receipt — no extra dependencies, no server:
import aetherproof
r = aetherproof.ollama("llama3", "Explain quantum tunneling")
print(r.text) # the model's answer
print(r.verify()) # True — cryptographically receipted
r.save("call.receipt")
Cloud providers work the same way (pip install openai / anthropic):
r = aetherproof.openai("gpt-4o", "Summarise this contract.")
r = aetherproof.anthropic("claude-3-opus-20240229", "Explain GDPR Article 13")
Already have a response? Receipt it directly:
receipt = aetherproof.for_anthropic(prompt, response_text, model="claude-3-opus-20240229")
print(receipt.verify()) # True
receipt.save("run.receipt")
What a receipt proves
- What ran — a hash identifying the model.
- What it produced — a hash of the output; any change is detectable.
- Tamper-evidence — flip a single byte and verification fails.
- Offline-verifiable — anyone can check it with the public key; no server.
- Portable — the same 128-byte wire format verifies in Python, the Rust CLI, and the AetherOS kernel.
The receipt can also ride invisibly inside the model's own output text
(aetherproof.embed), so the proof travels with the content.
License
AGPL-3.0-or-later. See LICENSE.
Project details
Release history Release notifications | RSS feed
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 aetherproof-0.2.0.tar.gz.
File metadata
- Download URL: aetherproof-0.2.0.tar.gz
- Upload date:
- Size: 25.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7a89cb861610dc7807d42db6cf6c65e604e10c431bd2678bb30499266bd7493
|
|
| MD5 |
f33df76a93b0367bbb1f2dcaaae5d826
|
|
| BLAKE2b-256 |
c47fb3c57ec74c080d0e0b0c2667cfc9f0f177e2a8feb8a1148010ea44f78307
|
File details
Details for the file aetherproof-0.2.0-py3-none-any.whl.
File metadata
- Download URL: aetherproof-0.2.0-py3-none-any.whl
- Upload date:
- Size: 16.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6984bc13d7da9c7297cd44773aa50a807f0578ccc4718f2ca5ffd6fb7d1b6787
|
|
| MD5 |
3b449322ab38a5c4ea55aad088ad1b39
|
|
| BLAKE2b-256 |
17069cba13d369eee1a8be8d8c3bdf14afc9e27144a7c2be5ca197e308af6b84
|