mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-18 21:52:01 +00:00

* AgentChat pause and resume a task Resolves #3859 * Add * Update usage * Update usage * WIP to address stateful group chat * Refactor group chat to add reset and flags for running * documentation
10 lines
218 B
Python
10 lines
218 B
Python
from typing import Protocol
|
|
|
|
from ._task import TaskRunner
|
|
|
|
|
|
class Team(TaskRunner, Protocol):
|
|
async def reset(self) -> None:
|
|
"""Reset the team and all its participants to its initial state."""
|
|
...
|