diff --git a/interpreter/tools/__init__.py b/interpreter/tools/__init__.py index 1facb8ad4..a284e14f0 100644 --- a/interpreter/tools/__init__.py +++ b/interpreter/tools/__init__.py @@ -5,7 +5,8 @@ from .computer import ComputerTool from .edit import EditTool -if os.environ.get("INTERPRETER_SIMPLE_BASH", "").lower() == "true": +# Temporarily always use simple bash +if True or os.environ.get("INTERPRETER_SIMPLE_BASH", "").lower() == "true": from .simple_bash import BashTool else: from .bash import BashTool diff --git a/interpreter/tools/simple_bash.py b/interpreter/tools/simple_bash.py index b2dd21f96..397bdcada 100644 --- a/interpreter/tools/simple_bash.py +++ b/interpreter/tools/simple_bash.py @@ -6,7 +6,7 @@ from .base import BaseAnthropicTool, CLIResult, ToolError, ToolResult -print("Using simple bash tool") +# print("Using simple bash tool") class BashTool(BaseAnthropicTool):