Skip to content

Commit

Permalink
Temporarily always use simple bash
Browse files Browse the repository at this point in the history
  • Loading branch information
KillianLucas committed Dec 10, 2024
1 parent 19b9a9d commit 969bc11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion interpreter/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion interpreter/tools/simple_bash.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from .base import BaseAnthropicTool, CLIResult, ToolError, ToolResult

print("Using simple bash tool")
# print("Using simple bash tool")


class BashTool(BaseAnthropicTool):
Expand Down

0 comments on commit 969bc11

Please sign in to comment.