MCPcopy Create free account
hub / github.com/SkyworkAI/DeepResearchAgent / run

Method run

src/visualization/visualizer.py:734–742  ·  view source on GitHub ↗

Run the web server.

(self, debug: bool = False)

Source from the content-addressed store, hash-verified

732 self._reload_thread.join(timeout=2.0)
733
734 def run(self, debug: bool = False):
735 """Run the web server."""
736 print(f"Starting visualization server on http://localhost:{self.port}")
737 print(f"Open your browser and navigate to http://localhost:{self.port}")
738 print(f"Auto-reload enabled: data will refresh every 60 seconds")
739 try:
740 self.app.run(host='0.0.0.0', port=self.port, debug=debug)
741 finally:
742 self.stop()
743

Callers 1

mainFunction · 0.95

Calls 2

stopMethod · 0.95
printFunction · 0.85

Tested by 1

mainFunction · 0.76