You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Initializationteam=Team(...)
team.add(Agent(...))
team.add(Agent(...))
# Run the task.result=awaitteam.run(...)
Alternatively, during an execution of a task.
team=Team(...)
# Running the task in the backgroundtask=asyncio.create_task(team.run(...))
# Add an agent.awaitteam.add(Agent(...))
# Remove an agent.awaitteam.remove(name=...)
# Waiting for the task to finish.awaittask
Why is this needed?
It's cool!
Please comment here for usage cases.
The text was updated successfully, but these errors were encountered:
What feature would you like to be added?
Before the task during initialization:
Alternatively, during an execution of a task.
Why is this needed?
It's cool!
Please comment here for usage cases.
The text was updated successfully, but these errors were encountered: