> ## Documentation Index
> Fetch the complete documentation index at: https://docs.continum.co/llms.txt
> Use this file to discover all available pages before exploring further.

# A 'Safe Detonation Zone'

> Distributed compliance layer for LLMs with zero-latency auditing

## What is Continum?

Continum is a compliance infrastructure that audits every LLM interaction in your application without adding latency to user responses. It provides comprehensive safety and compliance monitoring for AI applications.

<Card title="Get started in 5 minutes" icon="rocket" href="/quickstart" horizontal>
  Install the SDK and start auditing your LLM calls
</Card>

## The Problem

Modern AI applications face critical challenges:

* LLMs can leak PII, generate biased content, or be jailbroken
* Manual review doesn't scale to production traffic
* Blocking calls for compliance checks adds 2-5 seconds of latency
* Existing tools are either too slow or miss edge cases

## The Solution

Continum provides zero-latency compliance auditing with a single function: `protect()`. Wrap any LLM call and get automatic compliance monitoring without changing your code structure.

**One line to secure every LLM call:**

```typescript theme={null}
import { protect } from '@continum/sdk';
import OpenAI from 'openai';

const openai = new OpenAI();

// Wrap your LLM call with protect()
const response = await protect(
  () => openai.chat.completions.create({
    model: 'gpt-4',
    messages: [{ role: 'user', content: 'Hello!' }]
  }),
  {
    apiKey: process.env.CONTINUM_API_KEY!
  },
  {
    preset: 'customer-support',
    comply: ['GDPR', 'SOC2']
  }
);

// ✅ User gets response instantly (0ms added latency)
// ✅ Compliance audit runs in background
// ✅ Violations appear in dashboard with real-time alerts
```

**How it works:**

1. **Intercepts** your LLM call transparently
2. **Returns response instantly** to your users (zero latency)
3. **Audits asynchronously** in isolated sandboxes
4. **Validates compliance** using Claude as the judge
5. **Sends alerts** to Slack, PagerDuty, Discord, or webhooks
6. **Stores signals** in your dashboard for monitoring

**Global configuration (recommended):**

```typescript theme={null}
import { continum } from '@continum/sdk';

continum.configure({
  apiKey: process.env.CONTINUM_API_KEY!,
  preset: 'customer-support',
  comply: ['GDPR', 'SOC2'],
  alerts: {
    slack: process.env.SLACK_WEBHOOK_URL,
    pagerduty: process.env.PAGERDUTY_KEY
  }
});

// Now use protect() without passing config every time
const response = await continum.protect(
  () => openai.chat.completions.create({...})
);
```

## Key Features

<Columns cols={2}>
  <Card title="Zero Latency" icon="bolt" href="/concepts/zero-latency">
    Users get responses instantly while compliance runs asynchronously
  </Card>

  <Card title="Presets & Compliance" icon="shield-check" href="/sdk/presets">
    Automatic detection configuration with presets and compliance frameworks
  </Card>

  <Card title="Real-time Alerts" icon="bell" href="/sdk/alerts">
    Get notified instantly when violations are detected
  </Card>

  <Card title="Audit-Ready Evidence" icon="file-certificate" href="/concepts/evidence">
    Cryptographic integrity, regulatory attestations, and compliance packages
  </Card>

  <Card title="Incident Management" icon="triangle-exclamation" href="/concepts/incidents">
    Track high-risk incidents with segregation of duties
  </Card>

  <Card title="Real-time Dashboard" icon="chart-line" href="/dashboard/overview">
    Monitor violations, track usage, and export compliance reports
  </Card>
</Columns>

## Comprehensive Detection

Continum detects a wide range of compliance issues:

<Columns cols={2}>
  <Card title="Regulatory Frameworks" icon="shield-check" href="/compliance/regulations">
    GDPR, SOC 2, ISO 27001, HIPAA, and more
  </Card>

  <Card title="Real-time Dashboard" icon="chart-line" href="/dashboard/overview">
    Monitor violations, track usage, and export compliance reports
  </Card>
</Columns>

## Architecture & Compliance

<CardGroup cols={2}>
  <Card title="Architecture" icon="diagram-project" href="/concepts/architecture">
    Learn how Continum's distributed architecture enables zero-latency compliance
  </Card>

  <Card title="Evidence & Compliance" icon="file-certificate" href="/concepts/evidence">
    Transform monitoring into audit-ready evidence for regulatory compliance
  </Card>

  <Card title="Incident Management" icon="triangle-exclamation" href="/concepts/incidents">
    Track and resolve high-risk compliance incidents
  </Card>

  <Card title="Incident Management" icon="triangle-exclamation" href="/concepts/incidents">
    Track and resolve high-risk compliance incidents
  </Card>
</CardGroup>

## Next Steps

<CardGroup cols={2}>
  <Card title="Quickstart" icon="play" href="/quickstart">
    Get up and running in 5 minutes
  </Card>

  <Card title="SDK Installation" icon="download" href="/sdk/installation">
    Install and configure the SDK
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/introduction">
    Explore the REST API
  </Card>

  <Card title="Dashboard Guide" icon="gauge" href="/dashboard/overview">
    Navigate the compliance dashboard
  </Card>
</CardGroup>
