Agentic AI - Agent Observability
Given this code snippet measuring latency per step, what is the output of
print(latencies)?
latencies = []
for step in range(3):
start = get_time()
do_work(step)
end = get_time()
latencies.append(end - start)
print(latencies)
Assume do_work(step) takes 1, 2, and 3 seconds respectively.