Skip to main content

Eve (Vercel)

Overview

comply54-adapter-eve wraps comply54 as an Eve-compatible middleware layer. Eve is Vercel's AI agent framework — comply54 hooks in as a guardrail that runs before and after every agent tool call.

note

comply54-adapter-eve is currently in development. Email hello@comply54.io with subject "Eve adapter waitlist" to be notified when it's available.

Planned install

pip install comply54-adapter-eve

Planned usage

from comply54 import NigeriaFintechCompliance
from comply54_adapter_eve import Comply54Middleware

compliance = NigeriaFintechCompliance()

# Add as Eve middleware
app = EveApp()
app.use(Comply54Middleware(compliance=compliance))

The middleware will:

  1. Intercept every tool call before execution
  2. Run the full compliance check against the tool call's action and parameters
  3. Block or escalate if any pack fires
  4. Check the tool call output for PII leakage before returning to the agent