Question
For the same agent, is it safe to call run/run_sync/... concurrently? This is important for me so I just want to make sure and it's not mentioned in the website.
For example, is the following code guaranteed to be safe?
async with asyncio.TaskGroup() as tg:
task1 = tg.create_task(agent.run('What is a banana?'))
task2 = tg.create_task(agent.run('What is a bicycle?'))
Additional Context
No response