Feat : better file system interaction
This commit is contained in:
@@ -4,6 +4,7 @@ from sources.agents.agent import Agent
|
||||
from sources.tools.webSearch import webSearch
|
||||
from sources.tools.flightSearch import FlightSearch
|
||||
from sources.tools.fileFinder import FileFinder
|
||||
from sources.tools.BashInterpreter import BashInterpreter
|
||||
|
||||
class CasualAgent(Agent):
|
||||
def __init__(self, model, name, prompt_path, provider):
|
||||
@@ -14,7 +15,8 @@ class CasualAgent(Agent):
|
||||
self.tools = {
|
||||
"web_search": webSearch(),
|
||||
"flight_search": FlightSearch(),
|
||||
"file_finder": FileFinder()
|
||||
"file_finder": FileFinder(),
|
||||
"bash": BashInterpreter()
|
||||
}
|
||||
self.role = "talking"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user