Agentic AI - Agent Safety and Guardrails
Given the code below, what will be the output?
def sanitize_input(text):
return text.strip().lower()
user_input = ' Hello World! '
cleaned = sanitize_input(user_input)
print(cleaned)