开始所有Research Agent
(self)
| 135 | self.add_message(get_text("系统", "System"), get_text("🚀 开始运行所有Data Analysis Agent", "🚀 Starting all Data Analysis Agents")) |
| 136 | |
| 137 | def start_research_agents(self): |
| 138 | """开始所有Research Agent""" |
| 139 | for agent_name in self.agent_status: |
| 140 | if agent_name.startswith("agent_"): # Research agents |
| 141 | self.update_agent_status(agent_name, "running") |
| 142 | self.add_message(get_text("系统", "System"), get_text("🚀 开始运行所有Research Agent", "🚀 Starting all Research Agents")) |
| 143 | |
| 144 | def add_message(self, message_type: str, content: str): |
| 145 | """添加消息""" |
nothing calls this directly
no test coverage detected