Meta Llama
Secure Open-Weight AI

Protect Any Hub Model
Secure any model from the Hugging Face Hub. Wardstone Guard protects Inference Endpoints and self-hosted models with consistent security policies across thousands of model variants.
Community-uploaded models may contain backdoors or be intentionally unsafe.
Different Hub models have wildly different safety training levels.
Model files can contain arbitrary code that executes on load.
Hub models have varying levels of safety training
Community-uploaded models may contain backdoors
Inference Endpoints don't include safety filtering by default
Wardstone provides consistent security across heterogeneous models
Install Wardstone SDK in your Hugging Face inference code.
Screen all inputs before sending to Inference Endpoints or local models.
Validate responses from any Hub model for harmful content.
Apply uniform security policies across different model types.
Hugging Face pricing varies by deployment type. Wardstone provides uniform security pricing across all HF models.
# Step 1: Check user input with Wardstonecurl -X POST "https://api.wardstone.ai/v1/detect" \ -H "Authorization: Bearer YOUR_WARDSTONE_KEY" \ -H "Content-Type: application/json" \ -d '{"text": "User message here"}' # Response: { "prompt_attack": { "detected": false, ... } } # Step 2: If safe, send to HuggingFace Inference APIcurl -X POST "https://api-inference.huggingface.co/models/meta-llama/Llama-4-Scout-109B-Instruct/v1/chat/completions" \ -H "Authorization: Bearer YOUR_HF_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "model": "meta-llama/Llama-4-Scout-109B-Instruct", "messages": [{"role": "user", "content": "User message here"}], "max_tokens": 500 }' # Step 3: Check HuggingFace response with Wardstone before returning to userWardstone Guard protects all Hugging Face models with the same comprehensive security coverage. Whether you're using the latest releases or legacy models still in production, every API call is protected.
Secure Open-Weight AI
Secure European AI Models
Secure Cloud Model Hosting
Try Wardstone Guard in the playground to see detection in action.