What problem does it solve? LLM applications need automated content moderation to block unsafe user prompts and filter harmful model responses before they reach end users, without building a classifier from scratch. ## Core Features & Use Cases - Input and Output Filtering: Classify user prompts and assistant responses as safe or unsafe across six categories (violence/hate, sexual content, weapons, substances, self-harm, criminal planning) with 94-95% accuracy. - Production Deployment: Serve moderation at 50-100 requests/sec using vLLM, expose a FastAPI endpoint, or integrate with NeMo Guardrails for automatic rail enforcement. - Use Case: A chatbot team routes every user message through LlamaGuard before calling their LLM; requests flagged as unsafe (e.g., "S6 Criminal Planning") are blocked with a generic refusal instead of reaching the model. ## Quick Start Use the llamaguard skill to moderate a user message with the LlamaGuard-7b model and tell me whether it is safe and which safety category it violates.