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()