From 9572d4e1a063af5014c5fe50cb428dec45679a19 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Thu, 23 Apr 2026 15:18:15 -0700 Subject: [PATCH] feat(guardrails): add LLM_AS_A_JUDGE to SupportedGuardrailIntegrations --- litellm/types/guardrails.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/types/guardrails.py b/litellm/types/guardrails.py index 81cd6e5ecb9..58324742f68 100644 --- a/litellm/types/guardrails.py +++ b/litellm/types/guardrails.py @@ -91,6 +91,7 @@ class SupportedGuardrailIntegrations(Enum): BLOCK_CODE_EXECUTION = "block_code_execution" AKTO = "akto" MCP_JWT_SIGNER = "mcp_jwt_signer" + LLM_AS_A_JUDGE = "llm_as_a_judge" class Role(Enum):