baqr/computer_use_ootb
0
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 