init gradio demo

This commit is contained in:
Thomas Dhome Casanova (from Dev Box)
2025-01-20 15:07:05 -08:00
parent 9b2c7dae24
commit 85f5fc0385
17 changed files with 2083 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from .base import CLIResult, ToolResult
from .collection import ToolCollection
from .computer import ComputerTool
from .screen_capture import get_screenshot
__ALL__ = [
CLIResult,
ComputerTool,
ToolCollection,
ToolResult,
get_screenshot,
]