changed from yellow to purple for visibility
This commit is contained in:
GabeKoga
2024-04-05 18:25:59 -03:00
committed by GitHub
parent e7fcf5cd54
commit 459a404563
3 changed files with 12 additions and 12 deletions

View File

@@ -273,9 +273,9 @@ class Crew(BaseModel):
task.tools += AgentTools(agents=agents_for_delegation).tools()
role = task.agent.role if task.agent is not None else "None"
self._logger.log("debug", f"== Working Agent: {role}", color="bold_yellow")
self._logger.log("debug", f"== Working Agent: {role}", color="bold_purple")
self._logger.log(
"info", f"== Starting Task: {task.description}", color="bold_yellow"
"info", f"== Starting Task: {task.description}", color="bold_purple"
)
output = task.execute(context=task_output)