ACAI
ProductEvidenceDocsPricing
ACAI

Continuous compliance for AI. Every call scanned, classified, audit-logged, and evidence-ready.

Product

  • AI Layer
  • Sample Reports
  • Pricing
  • Documentation
  • Quickstart
  • Start Free

Company

  • About
  • Talk to an Engineer
  • Security
  • Support

Legal

  • Privacy Policy
  • Terms of Service
Service-Disabled Veteran-Owned Small Business
© 2026 Agile Cloud & AI LLC. All rights reserved.
OverviewQuick StartMigration GuideCompliance Quick StartNext Steps

User Guide

AuthenticationChat CompletionsEmbeddingsTranscriptionModelsGuardrailsRate LimitsError HandlingBYOK / Passthrough

Features

Batch APISemantic CacheRAGPromptsSmart RoutingRealtime APIAudit & Compliance

Developer

ArchitectureSelf-HostingAPI ReferenceInteractive DocsConfigurationContributing
Back to site

Next Steps

You made your first API call. Now turn it into a production-grade integration with compliance, cost controls, and observability.

1

Activate a Compliance Policy

Apply a pre-built policy template to enable PII redaction, audit logging, and content safety in one click. This is the core of what ACAI provides — compliance evidence your auditors will accept.

Available templates:

  • HIPAA — PHI redaction, 7-year audit retention, BAA chain
  • SOC 2 — Log redaction, 1-year retention, content safety enforcement
  • PCI DSS — Credit card/SSN redaction, full audit trail
Apply a Policy →Learn about Guardrails
2

Explore the Model Catalog

ACAI offers 37+ models from 10 providers — all pre-provisioned and ready to use. Browse the catalog to find the right model for your use case and tier.

curl https://api.agilecloud.ai/api/v1/gateway/catalog \
  -H "Authorization: Bearer YOUR_API_KEY"
Browse Model Catalog →
3

Tune Your Guardrails

The default policy gives you solid coverage, but you can customize PII detection modes, content safety thresholds, and add custom rules for your domain.

  • Set PII mode to redact (replace with placeholders), block (reject), or flag (log only)
  • Adjust content safety severity thresholds
  • Add custom regex rules for domain-specific patterns (e.g., internal project codes, patient IDs)
Guardrails Docs →
4

Install the ACAI SDK

The SDKs extend the official OpenAI client with ACAI-native features — compliance reports, policy management, BYOB backend registration, and the model catalog.

Python

pip install directai

JavaScript / TypeScript

npm install directai
from directai import DirectAI

client = DirectAI(api_key="YOUR_API_KEY")

# Standard OpenAI chat — works out of the box
response = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{"role": "user", "content": "Hello!"}],
)

# ACAI-native: generate a compliance report
report = client.reports.generate(
    framework="soc2",
    period_days=30,
)
5

Bring Your Own Backend (Optional)

Already have OpenAI, Anthropic, or Azure OpenAI API keys? Register them as BYOB backends and route through ACAI for compliance coverage. You pay your provider directly — ACAI adds only the compliance fee.

curl -X POST https://api.agilecloud.ai/api/v1/gateway/backends \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "my-openai",
    "provider": "openai",
    "api_key": "sk-...",
    "models": ["gpt-4o", "gpt-4o-mini"]
  }'
BYOB Docs →
6

Generate Your First Compliance Report

After making some API calls with a policy active, generate a compliance report. This is the deliverable your auditors want — structured evidence of access controls, PII handling, and audit completeness.

curl -X POST https://api.agilecloud.ai/api/v1/gateway/reports \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"framework": "soc2", "period_days": 30}'
Generate Report →

Keep Exploring

Batch API

Async bulk inference at 50% off

Semantic Cache

Deduplicate similar requests

RAG

Managed vector search + grounded generation

Prompt Management

Versioned templates with A/B testing

Smart Routing

Budget controls, fallbacks, A/B tests

Full API Reference

Every endpoint, schema, and parameter