Integration Overview¶
This section explains how to integrate the SDK into your application, verify attested outputs, and manage measurements.
Recommended flow¶
- Transform local context with
Axiom.reason() - Send only
transformedContextto your LLM or service - If attested, verify
attestationEvidencebefore using outputs
Integration patterns¶
- Client-side boundary: run transformation on the data owner’s machine
- Service boundary: run transformation in a trusted internal service
- Hybrid: preprocess locally, verify centrally
Operational notes¶
- Store
transformedContextseparately from raw input - Persist
attestationEvidencefor audit trails - Use a measurement registry for expected attestation values
Prev: Threat Model | Next: Verifier Integration