(self, task_prompt: Any)
| 136 | return executor |
| 137 | |
| 138 | def _execute(self, task_prompt: Any): |
| 139 | self._raise_if_cancelled() |
| 140 | results = self.run(task_prompt) |
| 141 | self.graph.record(results) |
| 142 | |
| 143 | def _build_memories_and_thinking(self) -> None: |
| 144 | """Initialize all memory and thinking managers before execution.""" |
no test coverage detected