Skip to content

Commit

Permalink
Update di_agents.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zyzhang1130 committed Dec 21, 2024
1 parent fee024f commit f940eb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/data_interpreter_mulit-agent/di_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}},
...
Expand Down Expand Up @@ -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",
}},
...
Expand Down Expand Up @@ -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",
}},
...
Expand Down

0 comments on commit f940eb9

Please sign in to comment.