Skip to content

Commit 969bc11

Browse files
committed
Temporarily always use simple bash
1 parent 19b9a9d commit 969bc11

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

interpreter/tools/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
from .computer import ComputerTool
66
from .edit import EditTool
77

8-
if os.environ.get("INTERPRETER_SIMPLE_BASH", "").lower() == "true":
8+
# Temporarily always use simple bash
9+
if True or os.environ.get("INTERPRETER_SIMPLE_BASH", "").lower() == "true":
910
from .simple_bash import BashTool
1011
else:
1112
from .bash import BashTool

interpreter/tools/simple_bash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from .base import BaseAnthropicTool, CLIResult, ToolError, ToolResult
88

9-
print("Using simple bash tool")
9+
# print("Using simple bash tool")
1010

1111

1212
class BashTool(BaseAnthropicTool):

0 commit comments

Comments
 (0)