Guardrails API Documentation
- Introduction
- Detect
- All Detectors Explained
- Hallucination
- Adherence
- Relevancy
- PII Anonymization
- Guardrails Policy
Guardrails APIs
Add Policy
Create a new policy for guardrails
POST
/
guardrails
/
add-policy
curl --request POST \
--url https://api.enkryptai.com/guardrails/add-policy \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"detectors": {
"topic_detector": {
"enabled": true,
"topic": [
"<string>"
]
},
"nsfw": {
"enabled": true
},
"toxicity": {
"enabled": true
},
"pii": {
"enabled": true,
"entities": [
"pii"
]
},
"injection_attack": {
"enabled": true
},
"keyword_detector": {
"enabled": true,
"banned_keywords": [
"<string>"
]
},
"system_prompt": {
"enabled": true
},
"copyright_ip": {
"enabled": true
},
"policy_violation": {
"enabled": true,
"policy_text": "<string>",
"need_explanation": true
},
"bias": {
"enabled": true
}
}
}'
{
"message": "Policy details added successfully",
"data": {
"name": "<string>",
"description": "<string>",
"detectors": {
"topic_detector": {
"enabled": true,
"topic": [
"<string>"
]
},
"nsfw": {
"enabled": true
},
"toxicity": {
"enabled": true
},
"pii": {
"enabled": true,
"entities": [
"pii"
]
},
"injection_attack": {
"enabled": true
},
"keyword_detector": {
"enabled": true,
"banned_keywords": [
"<string>"
]
},
"system_prompt": {
"enabled": true
},
"copyright_ip": {
"enabled": true
},
"policy_violation": {
"enabled": true,
"policy_text": "<string>",
"need_explanation": true
},
"bias": {
"enabled": true
}
},
"created_at": "2024-10-07T11:23:03.695943+00:00",
"updated_at": "2024-10-07T11:23:03.695943+00:00",
"policy_id": 1234567890,
"project_name": "default"
}
}
Authorizations
Body
application/json
Response
200 - application/json
Successful Response
Example:
"Policy details added successfully"
Example:
"2024-10-07T11:23:03.695943+00:00"
Example:
"2024-10-07T11:23:03.695943+00:00"
Example:
1234567890
Example:
"default"
curl --request POST \
--url https://api.enkryptai.com/guardrails/add-policy \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"detectors": {
"topic_detector": {
"enabled": true,
"topic": [
"<string>"
]
},
"nsfw": {
"enabled": true
},
"toxicity": {
"enabled": true
},
"pii": {
"enabled": true,
"entities": [
"pii"
]
},
"injection_attack": {
"enabled": true
},
"keyword_detector": {
"enabled": true,
"banned_keywords": [
"<string>"
]
},
"system_prompt": {
"enabled": true
},
"copyright_ip": {
"enabled": true
},
"policy_violation": {
"enabled": true,
"policy_text": "<string>",
"need_explanation": true
},
"bias": {
"enabled": true
}
}
}'
{
"message": "Policy details added successfully",
"data": {
"name": "<string>",
"description": "<string>",
"detectors": {
"topic_detector": {
"enabled": true,
"topic": [
"<string>"
]
},
"nsfw": {
"enabled": true
},
"toxicity": {
"enabled": true
},
"pii": {
"enabled": true,
"entities": [
"pii"
]
},
"injection_attack": {
"enabled": true
},
"keyword_detector": {
"enabled": true,
"banned_keywords": [
"<string>"
]
},
"system_prompt": {
"enabled": true
},
"copyright_ip": {
"enabled": true
},
"policy_violation": {
"enabled": true,
"policy_text": "<string>",
"need_explanation": true
},
"bias": {
"enabled": true
}
},
"created_at": "2024-10-07T11:23:03.695943+00:00",
"updated_at": "2024-10-07T11:23:03.695943+00:00",
"policy_id": 1234567890,
"project_name": "default"
}
}