From f940eb9a93fc6bbaec8743aac27e44a7a3981c63 Mon Sep 17 00:00:00 2001 From: zyzhang1130 <36942574+zyzhang1130@users.noreply.github.com> Date: Sat, 21 Dec 2024 14:37:23 +0800 Subject: [PATCH] Update di_agents.py --- examples/data_interpreter_mulit-agent/di_agents.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/data_interpreter_mulit-agent/di_agents.py b/examples/data_interpreter_mulit-agent/di_agents.py index 035b7995c..7552380237 100644 --- a/examples/data_interpreter_mulit-agent/di_agents.py +++ b/examples/data_interpreter_mulit-agent/di_agents.py @@ -152,7 +152,7 @@ def _decompose_task( "task_id": str = "unique identifier for a task in plan, can be an ordinal", "dependent_task_ids": list[str] = "ids of tasks prerequisite to this task", "instruction": "what you should do in this task, one short phrase or sentence", - "task_type": "type of this task, should be one of Available Task Types", + "task_type": "type of this task", "tool_info": "recommended tool(s)' name(s) for solving this task", }}, ... @@ -341,7 +341,7 @@ def _replanning(self, task: str) -> List[Dict[str, Any]]: "task_id": str = "unique identifier for a task in plan, can be an ordinal", "dependent_task_ids": list[str] = "ids of tasks prerequisite to this task", "instruction": "what you should do in this task, one short phrase or sentence", - "task_type": "type of this task, should be one of Available Task Types", + "task_type": "type of this task", "tool_info": "recommended tool(s)' name(s) for solving this task", }}, ... @@ -393,7 +393,7 @@ def _decompose_task( "task_id": str = "unique identifier for a task in plan, can be an ordinal", "dependent_task_ids": list[str] = "ids of tasks prerequisite to this task", "instruction": "what you should do in this task, one short phrase or sentence", - "task_type": "type of this task, should be one of Available Task Types", + "task_type": "type of this task", "tool_info": "recommended tool(s)' name(s) for solving this task", }}, ...