(self, agent, status)
| 166 | self.tool_calls.append((timestamp, tool_name, args)) |
| 167 | |
| 168 | def update_agent_status(self, agent, status): |
| 169 | if agent in self.agent_status: |
| 170 | self.agent_status[agent] = status |
| 171 | self.current_agent = agent |
| 172 | |
| 173 | def update_report_section(self, section_name, content): |
| 174 | if section_name in self.report_sections: |
no outgoing calls
no test coverage detected