MCPcopy Create free account
hub / github.com/FinStep-AI/ContestTrade / start_research_agents

Method start_research_agents

cli/main.py:137–142  ·  view source on GitHub ↗

开始所有Research Agent

(self)

Source from the content-addressed store, hash-verified

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 """添加消息"""

Callers

nothing calls this directly

Calls 3

update_agent_statusMethod · 0.95
add_messageMethod · 0.95
get_textFunction · 0.85

Tested by

no test coverage detected