Skip to content

Integration Overview

This section explains how to integrate the SDK into your application, verify attested outputs, and manage measurements.

  1. Transform local context with Axiom.reason()
  2. Send only transformedContext to your LLM or service
  3. If attested, verify attestationEvidence before 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 transformedContext separately from raw input
  • Persist attestationEvidence for audit trails
  • Use a measurement registry for expected attestation values

Prev: Threat Model | Next: Verifier Integration