Agentic AI - Agent Observability
Consider the following Python code:
What will be printed when this code runs?
def log_tool_call(tool_name, status):
print(f"Executing {tool_name}...")
print(f"Status: {status}")
log_tool_call('DeployScript', 'Completed')What will be printed when this code runs?
