* aws update
Browse files
app.py
CHANGED
@@ -172,11 +172,11 @@ def detect_aws_bedrock(prompt: str) -> (bool, bool):
|
|
172 |
])
|
173 |
|
174 |
logger.info(f"Prompt injection result from AWS Bedrock Guardrails: {response}")
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
|
179 |
-
return True,
|
180 |
|
181 |
|
182 |
def detect_sydelabs(prompt: str) -> (bool, bool):
|
|
|
172 |
])
|
173 |
|
174 |
logger.info(f"Prompt injection result from AWS Bedrock Guardrails: {response}")
|
175 |
+
if response["ResponseMetadata"]["HTTPStatusCode"] != 200:
|
176 |
+
logger.error(f"Failed to call AWS Bedrock Guardrails API: {response}")
|
177 |
+
return False, False
|
178 |
|
179 |
+
return True, response['action'] != 'NONE'
|
180 |
|
181 |
|
182 |
def detect_sydelabs(prompt: str) -> (bool, bool):
|