refactor: modularity fixes + plugin registry + compiled research
Browse files
purpose_agent/multi_agent.py
CHANGED
|
@@ -298,7 +298,7 @@ class AgentTeam:
|
|
| 298 |
orch = self.orchestrators.get(agent_name)
|
| 299 |
if not orch:
|
| 300 |
return
|
| 301 |
-
orch.
|
| 302 |
|
| 303 |
@property
|
| 304 |
def stats(self) -> dict[str, Any]:
|
|
|
|
| 298 |
orch = self.orchestrators.get(agent_name)
|
| 299 |
if not orch:
|
| 300 |
return
|
| 301 |
+
orch.sync_memory()
|
| 302 |
|
| 303 |
@property
|
| 304 |
def stats(self) -> dict[str, Any]:
|