Add worker to worker dict for the agent
(self, worker_config: WorkerConfig)
| 117 | self._session.reset() |
| 118 | |
| 119 | def add_worker(self, worker_config: WorkerConfig): |
| 120 | """Add worker to worker dict for the agent""" |
| 121 | self.workers[worker_config.id] = worker_config |
| 122 | return self.workers |
| 123 | |
| 124 | def get_worker_config(self, worker_id: str): |
| 125 | """Get worker config from worker dict""" |
nothing calls this directly
no outgoing calls
no test coverage detected