from __future__ import annotations from smolagents import launch_gradio_demo from tool import BrightDataScraperTool def main() -> None: tool = BrightDataScraperTool() launch_gradio_demo(tool) if __name__ == "__main__": main()