Source code for autogen_agentchat.base._team
from typing import Protocol
from ._task import TaskRunner
[docs]
class Team(TaskRunner, Protocol):
[docs]
async def reset(self) -> None:
"""Reset the team and all its participants to its initial state."""
...