Quick Start (60 seconds)
1. Install the Python SDK
pip install pfc-client
2. Run your first governed decision
from pfc_client import PFCClient
client = PFCClient(api_key="YOUR_API_KEY")
result = client.evaluate(
action="wire_transfer",
amount=50000
)
print(result)
3. Example response
{
"decision": {
"allow": true,
"reason": "Authorized"
},
"decision_hash": "8e9d1a04ee3d0febacbb91c58c7eb7db9b1c7b621e24e23cfb608f89fcdc7628",
"signature": "jB/+oJK0uGvP2W0i4kJzSD2qm8iRFsOKAq8accmlavCh..."
}
Every request through Prime Form Calculus generates a deterministic governance record including a decision hash and cryptographic signature.
Use this integration path when you need to reduce AI execution risk before a workflow reaches the execution boundary.
Teams explaining where policy ends and runtime enforcement begins can also use AI execution risk to frame why execution-time control matters.