mirror of
https://github.com/microsoft/OmniParser.git
synced 2025-02-18 03:18:33 +03:00
17 lines
359 B
Python
17 lines
359 B
Python
from .base import CLIResult, ToolResult
|
|
from .bash import BashTool
|
|
from .collection import ToolCollection
|
|
from .computer import ComputerTool
|
|
from .edit import EditTool
|
|
from .screen_capture import get_screenshot
|
|
|
|
__ALL__ = [
|
|
BashTool,
|
|
CLIResult,
|
|
ComputerTool,
|
|
EditTool,
|
|
ToolCollection,
|
|
ToolResult,
|
|
get_screenshot,
|
|
]
|