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

Function main

examples/process/process.py:32–46  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30 return args
31
32async def main():
33 # Parse command line arguments
34 args = parse_args()
35
36 # Initialize configuration and logger
37 config.initialize(config_path = args.config, args = args)
38 logger.initialize(config = config)
39 logger.info(f"| Config: {config.pretty_text}")
40
41 processor = PROCESSOR.build(config.processor)
42
43 try:
44 await processor.run()
45 except KeyboardInterrupt:
46 sys.exit()
47
48
49if __name__ == '__main__':

Callers 1

process.pyFile · 0.70

Calls 5

parse_argsFunction · 0.70
initializeMethod · 0.45
infoMethod · 0.45
buildMethod · 0.45
runMethod · 0.45

Tested by

no test coverage detected