meirk-brd
refactor
1a9158e
Raw
History Blame Contribute Delete
244 Bytes
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()