OCC cryptographic proof signing for LlamaIndex
Project description
occ-llamaindex
OCC cryptographic proof signing for LlamaIndex.
Every tool call produces an Ed25519-signed proof entry in proof.jsonl, creating a tamper-evident audit log of agent actions.
Install
pip install occ-llamaindex
Quick Start
Callback Handler (recommended)
from llama_index.core.callbacks import CallbackManager
from occ_llamaindex import OccCallbackHandler
handler = OccCallbackHandler()
callback_manager = CallbackManager([handler])
# Pass callback_manager to your agent or query engine
Wrap Individual Tools
from llama_index.core.tools import FunctionTool
from occ_llamaindex import OccTool
def search(query: str) -> str:
return f"Results for {query}"
tool = FunctionTool.from_defaults(fn=search)
safe_tool = OccTool(inner=tool)
Wrap All Tools
from occ_llamaindex import wrap_tools
safe_tools = wrap_tools([search_tool, calc_tool])
agent = ReActAgent.from_tools(safe_tools)
Custom Signer
from occ_llamaindex import OCCSigner, OccCallbackHandler
signer = OCCSigner(state_dir="/tmp/.occ", proof_file="audit.jsonl")
handler = OccCallbackHandler(signer=signer)
Proof Format
Each line in proof.jsonl is a JSON object:
{
"version": "occ/proof/1",
"timestamp": "2026-03-20T12:00:00.000Z",
"signer": "<base64url-ed25519-public-key>",
"payload": {
"type": "tool-call",
"tool": "search",
"inputHash": "<sha256-hex>",
"outputHash": "<sha256-hex>"
},
"signature": "<base64url-ed25519-signature>",
"prev": "<sha256-hex-of-previous-proof>"
}
Proofs are chained: each proof's prev field contains the SHA-256 hash of the previous proof's canonical JSON.
Configuration
- State directory: Keypair stored in
.occ/signer-state.json(defaults to CWD) - Proof file: Defaults to
proof.jsonlin CWD - Both configurable via
OCCSigner(state_dir=..., proof_file=...)
License
Apache-2.0
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 occ_llamaindex-0.2.0.tar.gz.
File metadata
- Download URL: occ_llamaindex-0.2.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aee5190a45b4a87dfff9421da8becfa65147296c80c4007e9275fb0aafb34190
|
|
| MD5 |
9e0679f5645890e9ac8dba9dcb3d1c37
|
|
| BLAKE2b-256 |
8c0248a3585ac5accb4ce396b052257580e73ce241a6286fc05b2ae6e3e9bd47
|
File details
Details for the file occ_llamaindex-0.2.0-py3-none-any.whl.
File metadata
- Download URL: occ_llamaindex-0.2.0-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fec268b155900684341ce27b46e33030f092658289f31ff8c5277b562bbc071
|
|
| MD5 |
cf9677bd819051970c58cf246c1f4c1c
|
|
| BLAKE2b-256 |
33a9c42c7ce1be56e7877c27fa85b216ec88babc3b327d42b86c12ada6db0756
|