(self, team_name: str, mailbox: FileMailbox)
| 341 | """ |
| 342 | |
| 343 | def __init__(self, team_name: str, mailbox: FileMailbox): |
| 344 | self.identity = AgentIdentity( |
| 345 | name="team-lead", team_name=team_name, role="leader" |
| 346 | ) |
| 347 | self.mailbox = mailbox |
| 348 | self.workers: dict[str, Worker] = {} |
| 349 | |
| 350 | def spawn_worker(self, name: str, executor=None) -> Worker: |
| 351 | """ |
nothing calls this directly
no test coverage detected