MCPcopy Create free account
hub / github.com/agenticsorg/edge-agents / SecurityCheckOutput

Class SecurityCheckOutput

scripts/agents/devops/src/core/guardrails.py:26–33  ·  view source on GitHub ↗

Output model for security check guardrail.

Source from the content-addressed store, hash-verified

24
25
26class SecurityCheckOutput(BaseModel):
27 """Output model for security check guardrail."""
28 is_malicious: bool = Field(
29 description="Whether the input is potentially malicious"
30 )
31 reasoning: str = Field(
32 description="Reasoning for the security determination"
33 )
34
35
36class SensitiveInfoOutput(BaseModel):

Callers 2

test_security_guardrailFunction · 0.90
check_securityFunction · 0.85

Calls 1

FieldFunction · 0.50

Tested by 1

test_security_guardrailFunction · 0.72