mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-06-08 15:05:17 +02:00
rename task_desc to instruction
This commit is contained in:
parent
1973af1633
commit
9c655e8828
1 changed files with 3 additions and 3 deletions
|
|
@ -60,11 +60,11 @@ class DataAnalyst(RoleZero):
|
|||
self.rc.working_memory.add(Message(content=browser_actions, role="user", cause_by="browser"))
|
||||
return memory
|
||||
|
||||
async def write_and_exec_code(self, task_desc: str):
|
||||
async def write_and_exec_code(self, instruction: str = ""):
|
||||
"""Write a code block for current task and execute it in an interactive notebook environment.
|
||||
|
||||
Args:
|
||||
task_desc (str): The task description for which the code needs to be written.
|
||||
instruction: The specific task description for which the code needs to be written.
|
||||
"""
|
||||
counter = 0
|
||||
success = False
|
||||
|
|
@ -72,7 +72,7 @@ class DataAnalyst(RoleZero):
|
|||
|
||||
# plan info
|
||||
plan_status = self.planner.get_plan_status()
|
||||
plan_status = plan_status + f"\nSpecific Task Description:{task_desc}"
|
||||
plan_status = plan_status + f"\nFurther Task Instruction: {instruction}"
|
||||
|
||||
# tool info
|
||||
if self.custom_tool_recommender:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue