Allela SDK
Tamper-evident, DigiCert co-signed attestation for AI decisions.
Install
From this folder:
pip install -e .
Quickstart
import allela
allela.configure(
tenant_id="acme_corp",
model_provider="anthropic",
model_id="claude-sonnet-4-6",
model_version="20250929",
)
@allela.trace(system_prompt="You are a credit risk assistant.")
def make_credit_decision(applicant_profile: str) -> str:
return call_your_llm(applicant_profile) # your existing AI call, unchanged
result = make_credit_decision("Applicant: income $60,000, requesting $10,000 loan.")
# `result` is returned immediately — attestation happens on a background
# thread and does not add latency to your function call.
# Before your process exits, flush any in-flight attestations:
allela.shutdown()
Verifying a decision later
result = allela.reconcile(
event_id="evt_...",
raw_input="Applicant: income $60,000, requesting $10,000 loan.",
raw_output="APPROVED: Low risk profile.",
)
print(result["path"]) # FULL_INTEGRITY_VERIFICATION / DATA_UNAVAILABLE_AT_SOURCE / TAMPER_DETECTED
What gets stored
Only cryptographic hashes and metadata (model ID/version, timestamps,
a hash of the system prompt) — never your raw input/output text. See
the Decision Event Schema (v1/decision-event.json) for the exact shape.
Important: call allela.shutdown() before exiting
Because attestation runs on a background worker so it never blocks your
application, an attestation that's still in flight when your process
exits abruptly could be lost. Call allela.shutdown() (which flushes
the queue) during your application's graceful shutdown sequence.
Release files for allela 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| allela-0.1.0.tar.gz | 8.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| allela-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 16.5 kB
Release files / allela-0.1.0.tar.gz
| Download URL | allela-0.1.0.tar.gz |
|---|---|
| Size | 8.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
03c5e9751ade40bc1a116b98c5ce02ba443ef00610efa9f48df56d1706454a06
|
|
BLAKE2b-256 checksum How to use checksums |
daf2969779dda891c3251d70265daf840431331b53c77483c5c7980e5c6338c3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.15
|
Release files / allela-0.1.0-py3-none-any.whl
| Download URL | allela-0.1.0-py3-none-any.whl |
|---|---|
| Size | 8.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
74b84635e35c5b9de0ef134f90192ef0e7f94a02bd3a1570e531cde0ff20160a
|
|
BLAKE2b-256 checksum How to use checksums |
0090e7e2caf7445c56ea5807d26e60b9f9fe7019c2d7782e3a32dfe5e9d4e2f7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.15
|