rawctx
Tamper-proof receipts for your AI's answers.
When an AI answer is challenged, rawctx records what it said, which sources it used, and a verifiable receipt. It keeps answer evidence and proof review separate from the agent and observability stack you already run.
Install
pip install rawctx
rawctx login
You can also mint a no-signup, hash-only browser receipt from the rawctx Hub. The browser path sends cryptographic fingerprints instead of the question and answer text.
Log an answer
import rawctx
receipt = rawctx.log_answer(
"What is the refund policy?",
"Customers can request a refund within 30 days.",
)
print(receipt)
Hash-centered storage is the default. Workspace settings can enable raw question and answer text storage, while hashes remain available when text storage is off.
Queue EZKL verification
Install the optional prover runtime and prepare rawctx.ezkl.json once with
the ONNX model, compiled circuit, settings, PK, VK, and workspace-compatible
SRS paths:
pip install 'rawctx[ezkl]'
{
"schema": "rawctx.ezkl.project.v1",
"model_path": "ezkl/model.onnx",
"compiled_circuit_path": "ezkl/network.compiled",
"settings_path": "ezkl/settings.json",
"proving_key_path": "ezkl/pk.key",
"verification_key_path": "ezkl/vk.key",
"srs_path": "ezkl/kzg.srs",
"srs_ref": "kzg_srs_v1"
}
Paths are relative to rawctx.ezkl.json. Set RAWCTX_EZKL_CONFIG when the
file is stored elsewhere.
Set the workspace endpoint and a UI-issued deployment token in the process environment:
RAWCTX_REGISTRY=https://<workspace-api-host>
RAWCTX_TOKEN=<workspace-api-token>
At runtime, no artifact path is passed. The SDK generates and locally verifies the proof, creates the answer log, and queues server verification:
import rawctx
with rawctx.RawctxClient() as client:
result = client.run_ezkl_and_log(
application_key="ezkl_test",
input_data=[[2.0]],
idempotency_key="ezkl:identity:run-001",
)
print(result["log_id"])
print(result["job_id"], result["proof_job"]["status"])
The helper supports a single public rescaled numeric input and output. Local
verification is followed by an asynchronous server job, so queued is not the
final result; wait for adapter_verified. The SRS must match the workspace's
pinned kzg_srs_v1 bundle and must not be regenerated with EZKL. Use a stable
idempotency_key because answer-log and job creation are separate writes.
What rawctx records
- Answer record: application, environment, question and answer text or hashes, idempotency key, policy flags, and status.
- Source evidence:
source_refsfor documents, registered audio or video evidence, answer segments, and purpose-bound retrieval events. - Model-run lineage: model metadata, input and output hashes, configuration hashes, trace IDs, and inference commitments.
- Lifecycle and proof: correction, void, and redaction events plus Merkle inclusion, signed tree-head binding, external anchors, witness receipts, and explicit proof status.
rawctx does not orchestrate model or agent inference and does not replace LangSmith, Langfuse, or another OpenTelemetry runtime. Its optional EZKL helper only runs the proof lifecycle for an already prepared ONNX circuit. rawctx records the evidence object that connects an answer to the sources and trace information needed for review.
Connect OpenTelemetry evidence
rawctx.ingest_otel_trace_bundle() wraps public-safe fields from an existing
OpenTelemetry trace into an answer-audit record. Keep trace ownership in your
current observability system and submit only the identifiers, hashes, and
references needed for answer review.
Do not send observability API keys, private trace URLs, raw tool outputs, or other secrets to rawctx.
Check answer-log completeness
Independent reconciliation compares a short-period external reference set with rawctx answer-audit logs. It detects missing, unexpected, late, duplicate, and unanchored records without becoming an inline decision gate.
rawctx reconcile run reconciliation.json --json
rawctx reconcile findings RUN_ID --json
rawctx reconcile proof RUN_ID --output reconciliation-proof.json
rawctx trust verify reconciliation-proof.json --online
Use a business-system export, provider usage export, or auditor-controlled extract that cannot be rewritten in lockstep with the answer logs. Persisted findings and proofs are commitment-oriented; do not place secrets, raw customer exports, raw PII, or private system URLs in payload metadata.
Review proof state
Proof status distinguishes externally anchored records from pending or local-only evidence. It describes the receipt's verification state; it does not claim that the submitted answer or upstream trace content is true.
rawctx trust proof answer ANSWER_LOG_ID --output proof.json
rawctx trust verify proof.json --online --json
Public documentation
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 rawctx-0.3.44.tar.gz.
File metadata
- Download URL: rawctx-0.3.44.tar.gz
- Upload date:
- Size: 190.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8efe5f5e4fa4b1b8a82d93545db8c925efbbeef71494abaac64696c1085ad4b
|
|
| MD5 |
bdeb17be8d381c122e32e4f71b4a45d0
|
|
| BLAKE2b-256 |
0a765fe8c07119929d8ca2cc7067bf5474e6c235d3588c211609ea03cca13c4a
|
File details
Details for the file rawctx-0.3.44-py3-none-any.whl.
File metadata
- Download URL: rawctx-0.3.44-py3-none-any.whl
- Upload date:
- Size: 153.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e483b16e2a2accca1f284950aaab5a5c9763be6f40b4b7e3cb7c4364746ef33c
|
|
| MD5 |
143ad0ef6a0ccb078c2a5a2a5240d0ba
|
|
| BLAKE2b-256 |
f239d2a71b9b18f4daa8fdb96643a5fee74c2a81f1f4746dd734599581f819eb
|