Agentic AI - Production Agent Architecture
What will be printed when the following async agent code is executed?
import asyncio
async def agent():
await asyncio.sleep(0.1)
return 'finished'
result = asyncio.run(agent())
print(result)