Agentic AI - Production Agent Architecture
Find the bug in this async agent code:
import asyncio
async def agent():
await asyncio.sleep(1)
return 'done'
result = agent()
print(result)