MCPcopy Index your code
hub / github.com/SkyworkAI/DeepResearchAgent / run

Method run

src/process/processor.py:172–183  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

170 return info
171
172 async def run(self):
173 logger.info(f"| Processing {self.data_type} data from {self.source}...")
174 tag_name = get_tag_name(assets_name=self.assets_name,
175 source=self.source,
176 data_type=self.data_type,
177 level=self.level)
178 save_dir = os.path.join(self.workdir, tag_name)
179 os.makedirs(save_dir, exist_ok=True)
180 info = await self._process(save_dir = save_dir)
181 info["tag"] = tag_name
182
183 return info
184
185@PROCESSOR.register_module(force=True)
186class AggProcessor(AbstractProcessor):

Callers 15

url_utils.pyFile · 0.45
run_crypto_streamMethod · 0.45
run_stock_streamMethod · 0.45
run_news_streamMethod · 0.45
_execute_git_commandMethod · 0.45
backtest_strategyFunction · 0.45
run_taskMethod · 0.45
run_taskMethod · 0.45
test_react.pyFile · 0.45

Calls 4

_processMethod · 0.95
get_tag_nameFunction · 0.90
joinMethod · 0.80
infoMethod · 0.45

Tested by 1

backtest_strategyFunction · 0.36