Documentation
Everything you need to integrate and use Caboo Shield
Getting StartedQuickstart Guide
Quickstart Guide
Get up and running with Caboo Shield in just 5 minutes. This guide will walk you through installation, authentication, and your first API call.
Step 1: Install the SDK
Choose your preferred package manager:
terminal
npm install @caboo/shield-sdk
terminal
yarn add @caboo/shield-sdk
terminal
pnpm add @caboo/shield-sdk
Step 2: Get Your API Key
1. Log in to your Caboo dashboard
2. Navigate to API Keys section
3. Click "Create New Key" and copy your key
4. Store it securely in your environment variables:
CABOO_API_KEY=cs_live_your_api_key_here
Step 3: Initialize and Test
javascript
import CabooShield from '@caboo/shield-sdk';
const shield = new CabooShield({
apiKey: process.env.CABOO_API_KEY,
environment: 'production'
});
// Monitor a prompt
const result = await shield.analyze({
prompt: userInput,
model: 'gpt-4',
metadata: { userId: '123' }
});
You're All Set!
You've successfully integrated Caboo Shield. Your AI models are now protected against prompt injection, data exfiltration, and other security threats.