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:
- Intercept every tool call before execution
- Run the full compliance check against the tool call's action and parameters
- Block or escalate if any pack fires
- Check the tool call output for PII leakage before returning to the agent
Related
- LangChain integration — available now
- CrewAI integration — available now
- AutoGen integration — available now