remove selected screen as only 1 screen

This commit is contained in:
Thomas Dhome Casanova (from Dev Box)
2025-01-22 21:45:32 -08:00
parent b1cd705f1b
commit 8778970aff
7 changed files with 11 additions and 28 deletions

View File

@@ -20,10 +20,9 @@ class AnthropicExecutor:
self,
output_callback: Callable[[BetaContentBlockParam], None],
tool_output_callback: Callable[[Any, str], None],
selected_screen: int = 0
):
self.tool_collection = ToolCollection(
ComputerTool(selected_screen=selected_screen)
ComputerTool()
)
self.output_callback = output_callback
self.tool_output_callback = tool_output_callback