From 969bc1199f3f4b10468e0026d40e882cdde6b400 Mon Sep 17 00:00:00 2001 From: killian <63927363+KillianLucas@users.noreply.github.com> Date: Tue, 10 Dec 2024 12:09:06 -0800 Subject: [PATCH] Temporarily always use simple bash --- interpreter/tools/__init__.py | 3 ++- interpreter/tools/simple_bash.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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):