From becd4901f8f16775f42e7ae81daed92c3337a3cb Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Thu, 19 Feb 2026 17:46:36 -0800 Subject: [PATCH] init BEDROCK_PARTNER_GUARDRAIL_BLOCKED_INPUT_MSG --- litellm/constants.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/litellm/constants.py b/litellm/constants.py index ee1b69f145d..4ad4ff14578 100644 --- a/litellm/constants.py +++ b/litellm/constants.py @@ -1506,3 +1506,7 @@ MAX_PAYLOAD_SIZE_FOR_DEBUG_LOG = int( MAX_COMPETITOR_NAMES = int(os.getenv("MAX_COMPETITOR_NAMES", 100)) COMPETITOR_LLM_TEMPERATURE = float(os.getenv("COMPETITOR_LLM_TEMPERATURE", 0.3)) DEFAULT_COMPETITOR_DISCOVERY_MODEL = "gpt-4o-mini" + +# Partner guardrail provisioning +BEDROCK_PARTNER_GUARDRAIL_BLOCKED_INPUT_MSG = "Your request was blocked by the content safety guardrail." +BEDROCK_PARTNER_GUARDRAIL_BLOCKED_OUTPUT_MSG = "The response was blocked by the content safety guardrail."