Agentic AI - Agent Safety and Guardrails
What is the output of this code snippet?
def validate_age(age):
if not isinstance(age, int) or age < 0 or age > 120:
return False
return True
print(validate_age('25'))