Files
OmniParser/computer_use_demo/gradio/tools/__init__.py
Thomas Dhome-Casanova b2d6bc5c3e code cleanup
2025-01-29 23:01:14 -08:00

12 lines
235 B
Python

from .base import ToolResult
from .collection import ToolCollection
from .computer import ComputerTool
from .screen_capture import get_screenshot
__ALL__ = [
ComputerTool,
ToolCollection,
ToolResult,
get_screenshot,
]