Skip to content

SOVRThe AI Responsibility Layer

Default-deny gateway for AI actions. Free your eyes, trust the code.

Quick Example

typescript
import { SovrClient } from '@sovr/sdk';

const sovr = new SovrClient({
  tenantId: 'your-tenant-id',
  apiKey: 'sk_...'
});

// Gate check before AI action
const result = await sovr.gate.check({
  action: 'send_email',
  context: { recipient: 'ceo@company.com', content: aiGeneratedContent }
});

if (result.decision === 'allow') {
  await sendEmail(result.plan);
} else if (result.decision === 'require_approval') {
  console.log(`Pending approval: ${result.approvalId}`);
}

Install

bash
npm install @sovr/sdk

The AI Responsibility Layer