from aetherlab import AetherLabClient
# AI generates risky financial advice
ai_response = "Invest all savings in crypto! Guaranteed 10x!"
# AetherLab ensures it's safe and compliant
result = client.validate_content(
content=ai_response,
desired_attributes=["professional", "accurate"],
prohibited_attributes=["guaranteed returns"]
)
# Result: ❌ Blocked - suggests compliant alternativecurl -X POST https://api.aetherlab.co/v1/validate \
-H "Authorization: Bearer your-api-key" \
-d '{
"content": "Invest all in crypto! 10x guaranteed!",
"prohibited_attributes": ["guaranteed returns"]
}'