Off Topic Prompts
Ensures content stays within defined business scope using LLM analysis. Flags content that goes off-topic or outside your scope to help maintain focus and prevent scope creep.
Configuration
{
"name": "Off Topic Prompts",
"config": {
"model": "gpt-5",
"confidence_threshold": 0.7,
"system_prompt_details": "Customer support for our e-commerce platform. Topics include order status, returns, shipping, and product questions.",
"include_reasoning": false
}
}
Parameters
model(required): Model to use for analysis (e.g., "gpt-5")confidence_threshold(required): Minimum confidence score to trigger tripwire (0.0 to 1.0)system_prompt_details(required): Description of your business scope and acceptable topicsinclude_reasoning(optional): Whether to include reasoning/explanation fields in the guardrail output (default:false)- When
false: The LLM only generates the essential fields (flaggedandconfidence), reducing token generation costs - When
true: Additionally, returns detailed reasoning for its decisions - Use Case: Keep disabled for production to minimize costs; enable for development and debugging
- When
Implementation Notes
- LLM Required: Uses an LLM for analysis
- Business Scope:
system_prompt_detailsshould clearly define your business scope and acceptable topics. Effective prompt engineering is essential for optimal LLM performance and accurate off-topic detection.
What It Returns
Returns a GuardrailResult with the following info dictionary:
{
"guardrail_name": "Off Topic Prompts",
"flagged": false,
"confidence": 0.85,
"threshold": 0.7,
"business_scope": "Customer support for our e-commerce platform. Topics include order status, returns, shipping, and product questions."
}
flagged: Whether the content is off-topic (outside your business scope)confidence: Confidence score (0.0 to 1.0) for the assessmentthreshold: The confidence threshold that was configuredreason: Explanation of why the input was flagged (or not flagged) - only included wheninclude_reasoning=true