Agentic AI - Agent Safety and Guardrails
You want to build a human approval workflow that requests approval only if the AI confidence is below 0.7 or if the task is marked as 'high risk'. Which condition correctly implements this logic in Python?
confidence < 0.7 or task == 'high risk'.if confidence < 0.7 or task == 'high risk': request_approval() -> Option A15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions