Governance & Security

Production-Ready Policies

Define governance rules once and enforce them everywhere. Out-of-the-box guardrails for compliance, security, and cost control across all your agentic applications.

PII Redaction

Automatically detect and redact sensitive personal information before it reaches your LLM. Protect SSNs, credit cards, addresses, and custom data patterns.

  • Real-time PII detection and masking
  • Custom regex patterns for industry-specific data
  • Audit logs for compliance reporting

Jailbreak Defense

Prevent prompt injection attacks and unauthorized instructions. Protect your agents from malicious inputs attempting to override their behavior.

  • Multi-layer prompt injection detection
  • Adversarial input filtering
  • Alert system for security teams

Provider Enforcement

Control which LLM providers and models your agents can use. Enforce compliance requirements like Azure OpenAI only or on-premise models.

  • Whitelist/blacklist providers and models
  • Region-specific routing rules
  • Fallback provider configuration

Cost & Performance Controls

Set budget limits, rate limits, and performance thresholds. Prevent runaway costs and ensure your agents meet SLA requirements.

  • Per-agent and team-level budget caps
  • Request rate limiting and throttling
  • Response time monitoring and alerts

Define once, enforce everywhere

Write custom policies once and they automatically apply across all frameworks

custom_policy.py
import eevee as ev

# Create a custom policy
@ev.policy("block_competitor_mentions")
class CompetitorFilter:
    def on_input(self, context):
        competitors = ["CompanyX", "ProductY"]
        if any(comp in context.input for comp in competitors):
            return ev.block("Competitor mention detected")
        return ev.allow()

# Apply to all agents automatically
agent = ev.load("agent", "sales_assistant")
# Policy runs without code changes

Ready to secure your agents?

Start with production-ready policies or build custom governance rules for your organization