fix: browser bug

This commit is contained in:
martin legrand
2025-04-07 14:55:41 +02:00
parent ff8fdddbdc
commit 21bf224fef
6 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ class PlannerAgent(Agent):
def show_plan(self, json_plan: dict) -> None:
agents_tasks = self.parse_agent_tasks(json_plan)
if agents_tasks == (None, None):
pretty_print("Failed to make a plan.", color="failure")
pretty_print("Failed to make a plan. This can happen with (too) small LLM. Clarify your request and insist on it making a plan.", color="failure")
return
pretty_print("\n▂▘ P L A N ▝▂", color="status")
for task_name, task in agents_tasks: