File size: 244 Bytes
1a9158e
 
fbd126d
1a9158e
fbd126d
 
1a9158e
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()