fix : chromedriver bug

This commit is contained in:
martin legrand
2025-03-19 09:41:48 +01:00
5 changed files with 22 additions and 13 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ class AgentRouter:
result = self.classify_text(text)
for agent in self.agents:
if result["labels"][0] == agent.role:
pretty_print(f"Selected agent: {agent.agent_name}", color="warning")
pretty_print(f"Selected agent: {agent.agent_name} (roles: {agent.role})", color="warning")
return agent
return None