Skip to main content

EnkryptAI Guardrails

LiteLLM supports EnkryptAI guardrails for content moderation and safety checks on LLM inputs and outputs.

Quick Start​

1. Define Guardrails on your LiteLLM config.yaml​

Define your guardrails under the guardrails section:

model_list:
- model_name: gpt-5.6-luna
litellm_params:
model: openai/gpt-5.6-luna
api_key: os.environ/OPENAI_API_KEY

guardrails:
- guardrail_name: "enkryptai-guard"
litellm_params:
guardrail: enkryptai
mode: "pre_call"
api_key: os.environ/ENKRYPTAI_API_KEY
detectors:
toxicity:
enabled: true
nsfw:
enabled: true
pii:
enabled: true
entities: ["email", "phone", "secrets"]
injection_attack:
enabled: true

Supported values for mode​

  • pre_call - Run before LLM call, on input
  • post_call - Run after LLM call, on output
  • during_call - Run during LLM call, on input. Same as pre_call but runs in parallel as LLM call

Available Detectors​

EnkryptAI supports multiple content detection types:

  • toxicity - Detect toxic language
  • nsfw - Detect NSFW (Not Safe For Work) content
  • pii - Detect personally identifiable information
    • Configure entities: ["pii", "email", "phone", "secrets", "ip_address", "url"]
  • injection_attack - Detect prompt injection attempts
  • keyword_detector - Detect custom keywords/phrases
  • policy_violation - Detect policy violations
  • bias - Detect biased content
  • sponge_attack - Detect sponge attacks

2. Set Environment Variables​

export ENKRYPTAI_API_KEY="your-api-key"

3. Start LiteLLM Gateway​

litellm --config config.yaml --detailed_debug

4. Test Request​

Langchain, OpenAI SDK Usage Examples

curl -i http://localhost:4000/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $LITELLM_API_KEY" \
-d '{
"model": "gpt-5.6-luna",
"messages": [
{"role": "user", "content": "Hello, how can you help me today?"}
],
"guardrails": ["enkryptai-guard"]
}'

Response: HTTP 200 Success

Content passes all detector checks and is allowed through.

Video Walkthrough​

Advanced Configuration​

Using Custom Policies​

You can specify a custom EnkryptAI policy:

guardrails:
- guardrail_name: "enkryptai-custom"
litellm_params:
guardrail: enkryptai
mode: "pre_call"
api_key: os.environ/ENKRYPTAI_API_KEY
policy_name: "my-custom-policy" # Sent via x-enkrypt-policy header

Detection is controlled entirely by the policy referenced in policy_name; LiteLLM sends only the text and this header to EnkryptAI, so per-detector settings must be configured in the EnkryptAI policy itself. Any detected violation blocks the request.

Input and Output Guardrails​

Configure separate guardrails for input and output:

guardrails:
# Input guardrail
- guardrail_name: "enkryptai-input"
litellm_params:
guardrail: enkryptai
mode: "pre_call"
api_key: os.environ/ENKRYPTAI_API_KEY
detectors:
pii:
enabled: true
entities: ["email", "phone", "ssn"]
injection_attack:
enabled: true

# Output guardrail
- guardrail_name: "enkryptai-output"
litellm_params:
guardrail: enkryptai
mode: "post_call"
api_key: os.environ/ENKRYPTAI_API_KEY
detectors:
toxicity:
enabled: true
nsfw:
enabled: true

Configuration Options​

ParameterTypeDescriptionDefault
api_keystringEnkryptAI API keyENKRYPTAI_API_KEY env var
api_basestringEnkryptAI API base URLhttps://api.enkryptai.com
policy_namestringCustom policy name (sent via x-enkrypt-policy header)None
modestringWhen to run: pre_call, post_call, or during_callRequired

Observability​

EnkryptAI guardrail logs include:

  • guardrail_status: success, guardrail_intervened, or guardrail_failed_to_respond
  • guardrail_provider: enkryptai
  • guardrail_json_response: Full API response with detection details
  • duration: Time taken for guardrail check
  • start_time and end_time: Timestamps

These logs are available through your configured LiteLLM logging callbacks.

Error Handling​

The guardrail handles errors gracefully:

  • API Failures: Logs error and raises exception
  • Rate Limits (429): Logs error and raises exception
  • Invalid Configuration: Raises ValueError on initialization
  • Violations Detected: Raises an exception and blocks the request

Support​

For more information about EnkryptAI: