Agentic AI - Agent Safety and Guardrails
Given this Python code snippet, what will be the output?
output = "This is a secret message" banned_words = ["secret", "hidden"] filtered = any(word in output for word in banned_words) print(filtered)
