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
+2 -1
View File
@@ -94,7 +94,8 @@ class Interaction:
"""Request AI agents to process the user input."""
if self.last_query is None or len(self.last_query) == 0:
return
agent = self.router.select_agent(self.last_query)
#agent = self.router.select_agent(self.last_query)
agent = self.agents[3]
if agent is None:
return
if self.current_agent != agent: