EVE AI Governance

Trust Center

What EVE is, what risks it reduces, what can be independently verified,
and what it does not claim.

What is EVE?

EVE is a governance layer for LLM-powered applications in regulated industries. It sits between your application code and the model provider, evaluating every request and response against a policy before allowing it to proceed.

The core component is the evecore SDK — an OpenAI-compatible Python client that enforces policy, emits signed audit records, and raises structured exceptions when a policy rule is violated. Replacing openai.OpenAI() with GovernedLLM(policy="financial-v1") is the integration surface for most deployments. The SDK is published on PyPI (pip install evecore).

Every decision produces a governance certificate — an HMAC-SHA256 signed record binding the verdict, the policy version, the tenant identifier, the environment, and a time-bounded nonce. The certificate can be verified offline without contacting EVE.

Why does it exist?

Regulated environments — lending, healthcare, insurance, government contracting — face a specific problem: LLM outputs must be auditable after the fact, and certain actions must be blocked before they reach a human or trigger a transaction.

Existing LLM providers do not emit independently verifiable compliance artifacts. EVE fills that gap by wrapping the provider call with deterministic pre- and post-evaluation, signing every decision, and producing an append-only hash-chained audit log that can be exported, verified offline, and submitted to regulators or auditors.

What risks does it reduce?

What can be independently verified?

Audit chain integrity Read the JSONL log; call verify_chain(records). Returns True if every record correctly hashes its predecessor. No EVE server required.
Record signatures Call verify_signatures(records, key) with your shared HMAC key. Each record's HMAC-SHA256 signature is recomputed and compared.
Certificate authenticity Call verify_certificate(cert_dict) (no server, no network). Checks signature, TTL, and nonce fields.
Policy version binding The policy_version field is included in the HMAC payload. Tampering with the version invalidates the certificate signature.
Compliance report attestation The generated report includes a SHA-256 hash of its own body. Re-hash to confirm the report has not been altered since generation.
Pilot validation Run python scripts/pilot_validation.py from the repo root. Produces a 7-check PASS/FAIL report in under one second, no API key required.

What assumptions does it make?

  1. 1 The HMAC signing key is secret. If the key is compromised, an attacker can forge certificates. Production deployments should provision the key from a secrets manager or HSM, not an environment variable default.
  2. 2 The audit log file is append-only. Chain integrity detection requires that records are not rewritten. Use filesystem permissions or a write-once storage backend in production.
  3. 3 Policy rules are correct for the deployment context. EVE enforces what the policy specifies. A policy that does not cover a risk category will not block requests in that category. Policy authorship is the operator's responsibility.
  4. 4 The host clock is approximately correct. TTL-based certificate expiry relies on system time. A misconfigured clock can allow replay of recently expired certificates.
  5. 5 Tenant state persists across infrastructure events. In-memory nonce stores are cleared on restart. Distributed deployments should use an external nonce store for replay guarantees across instances.

What does it NOT claim?

EVE claims
  • Deterministic pre/post evaluation of every call
  • Signed, hash-chained, offline-verifiable audit records
  • Tenant-isolated, replay-protected governance certificates
  • Structured veto exceptions with certificate IDs
  • Policy-version binding in every signed artifact
  • Zero mandatory external dependencies at runtime
EVE does NOT claim
  • That LLM outputs are factually correct
  • That policy rules are legally sufficient for any jurisdiction
  • Real-time threat intelligence or adversarial prompt detection
  • Guaranteed prevention of all adversarial prompt injection
  • Model behavioural alignment beyond pattern-based policy rules
  • Compliance certification (SOC 2, HIPAA, PCI) in any jurisdiction