mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 16:48:30 +00:00
Use a slice for the manager request. Make the task use the agent i18n settings (#1446)
This commit is contained in:
committed by
GitHub
parent
916dec2418
commit
e2badaa4c6
@@ -81,6 +81,7 @@ class BaseAgentTools(BaseModel, ABC):
|
|||||||
task_with_assigned_agent = Task( # type: ignore # Incompatible types in assignment (expression has type "Task", variable has type "str")
|
task_with_assigned_agent = Task( # type: ignore # Incompatible types in assignment (expression has type "Task", variable has type "str")
|
||||||
description=task,
|
description=task,
|
||||||
agent=agent,
|
agent=agent,
|
||||||
expected_output="Your best answer to your coworker asking you this, accounting for the context shared.",
|
expected_output=agent.i18n.slice("manager_request"),
|
||||||
|
i18n=agent.i18n,
|
||||||
)
|
)
|
||||||
return agent.execute_task(task_with_assigned_agent, context)
|
return agent.execute_task(task_with_assigned_agent, context)
|
||||||
|
|||||||
@@ -20,7 +20,8 @@
|
|||||||
"getting_input": "This is the agent's final answer: {final_answer}\n\n",
|
"getting_input": "This is the agent's final answer: {final_answer}\n\n",
|
||||||
"summarizer_system_message": "You are a helpful assistant that summarizes text.",
|
"summarizer_system_message": "You are a helpful assistant that summarizes text.",
|
||||||
"sumamrize_instruction": "Summarize the following text, make sure to include all the important information: {group}",
|
"sumamrize_instruction": "Summarize the following text, make sure to include all the important information: {group}",
|
||||||
"summary": "This is a summary of our conversation so far:\n{merged_summary}"
|
"summary": "This is a summary of our conversation so far:\n{merged_summary}",
|
||||||
|
"manager_request": "Your best answer to your coworker asking you this, accounting for the context shared."
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"force_final_answer_error": "You can't keep going, this was the best you could do.\n {formatted_answer.text}",
|
"force_final_answer_error": "You can't keep going, this was the best you could do.\n {formatted_answer.text}",
|
||||||
|
|||||||
Reference in New Issue
Block a user