Skip to content

Commit

Permalink
Removed Terminal tool as it was unused
Browse files Browse the repository at this point in the history
  • Loading branch information
antoninoLorenzo committed Aug 9, 2024
1 parent 559f58d commit 9ff0a1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/agent/memory/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from typing import Dict, List

from src.agent.plan import Plan, Task
from src.agent.tools import Terminal
from src.agent.tools import Tool

SESSIONS_PATH = Path(Path.home() / '.aiops' / 'sessions')
if not SESSIONS_PATH.exists():
Expand Down Expand Up @@ -106,7 +106,7 @@ def from_json(path: str):
tasks.append(Task(
command=task['command'],
thought=task['thought'],
tool=Terminal,
tool=Tool,
output=task['output']
))
session.add_plan(Plan(tasks))
Expand Down

0 comments on commit 9ff0a1b

Please sign in to comment.