CoolFace
Apppublic

baqr/computer_use_ootb

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
__init__.py17 linesDownload Raw Back to tools
1from .base import CLIResult, ToolResult2from .bash import BashTool3from .collection import ToolCollection4from .computer import ComputerTool5from .edit import EditTool6from .screen_capture import get_screenshot7 8__ALL__ = [9    BashTool,10    CLIResult,11    ComputerTool,12    EditTool,13    ToolCollection,14    ToolResult,15    get_screenshot,16]17