System Overview
Continum uses a distributed architecture to achieve zero-latency compliance auditing. The system is designed around the principle of “sovereignty-first” - your API keys stay on your server, and compliance runs asynchronously.Components
SDK (Client-side)
The Continum SDK runs on your server and manages three responsibilities:- Direct execution: Calls LLM providers directly using your API keys
- Guardian check: Optional pre-LLM PII detection (< 100ms)
- Async mirroring: Sends compliance triplet to Continum Platform (non-blocking)
Continum Platform
The Continum Platform handles:- Customer and API key management
- Sandbox configuration
- Audit ingestion
- Signal storage and retrieval
- Dashboard queries
Compliance Engine
The Compliance Engine runs audits in isolated sandboxes:- Loads sandbox configuration (type, rules, regulations)
- Analyzes prompt and response for violations
- Returns risk level, violations, and reasoning
- Stores signals for monitoring
Dashboard
Web app for monitoring compliance:- Real-time signal viewing
- Risk level breakdown
- Sandbox management
- API key generation
Data Flow
1. LLM Call with Compliance
- SDK calls OpenAI directly → response in ~500ms
- SDK returns response to your app immediately
- SDK fires async request to Continum Platform (non-blocking)
2. Audit Ingestion
- Platform validates sandbox exists
- Platform increments audit count
- Audit queued for processing
- Platform returns 202 Accepted immediately
3. Compliance Processing
4. Signal Storage
- Signal stored securely
- Available in dashboard immediately
- Accessible via API queries
Security Model
API Key Management
- Storage: Military-grade encryption with secure hash lookup
- Transmission: HTTPS only with
x-continum-keyheader - Rotation: Generate new keys anytime, old keys invalidated
Data Privacy
- Your API keys: Never leave your server
- Compliance triplets: Sent to Continum after user has response
- Sandbox isolation: Each audit runs in fresh isolated environment
- No storage of raw data: Only signals (risk level + violations) stored
Compliance Standards
Continum adheres to:- SOC 2 Type II compliance
- GDPR data protection requirements
- CCPA privacy standards
- Industry-standard encryption (AES-256)
Scalability
Horizontal Scaling
- SDK: Runs on your servers (scales with your app)
- Platform: Auto-scales based on traffic
- Compliance Engine: Processes thousands of audits concurrently
- Dashboard: Optimized for fast queries
Performance
- User latency: 0ms added (direct LLM call)
- Guardian: < 100ms for PII detection
- Audit processing: 2-5 seconds (async, user doesn’t wait)
- Dashboard queries: < 100ms with optimized indexing
Integration
SDK Setup
Install the SDK in your application:Environment Variables
Your Application:Next Steps
Zero Latency
Learn how zero-latency auditing works
Guardian
Understand pre-LLM protection
Sandbox
Explore sandbox types
Signal
Understand audit results

