Feat : planning agent tasks parsing

This commit is contained in:
martin legrand
2025-03-09 14:23:54 +01:00
parent 0dbcf29701
commit e6e48f7f3f
7 changed files with 68 additions and 27 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
from sources.utility import pretty_print
from sources.agents.agent import Agent, executorResult
from sources.tools.C_Interpreter import CInterpreter
from sources.tools.GoInterpreter import GoInterpreter
from sources.tools.PyInterpreter import PyInterpreter
@@ -21,7 +20,7 @@ class CoderAgent(Agent):
"go": GoInterpreter(),
"file_finder": FileFinder()
}
self.role = "coding"
self.role = "coding and programming"
def process(self, prompt, speech_module) -> str:
answer = ""