You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
"agent_description": "Read or write content from/to a file, or generate and save an image using text input",
34
34
"parameter_description": "The task description detailing what to read, write, or generate. This can include file operations or image generation requests."
Copy file name to clipboardExpand all lines: examples/atomic/WebAgent.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ def main():
27
27
"model_name": "gpt-4o-mini",
28
28
"tool_choice": "auto"
29
29
},
30
-
"tools": ["call_webagent"],
30
+
"tool_names": ["call_webagent"],
31
31
"agent_description": "Use a web agent to perform tasks and fetch information from web pages based on a given instruction.",
32
32
"parameter_description": "A natural language instruction describing the task to be performed by the web agent, including the starting URL and the goal."
Copy file name to clipboardExpand all lines: examples/composite/MasterAgent.py
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ def main():
31
31
"model_name": "gpt-4o-mini",
32
32
"tool_choice": "auto"
33
33
},
34
-
"tools": ["read_file", "write_to_file", "generate_and_download_image"], # Changed from "write_file" to "write_to_file"
34
+
"tool_names": ["read_file", "write_to_file", "generate_and_download_image"], # Changed from "write_file" to "write_to_file"
35
35
"agent_description": "Read or write content from/to a file, or generate and save an image using text input",
36
36
"parameter_description": "The task description detailing what to read, write, or generate. This can include file operations or image generation requests."
37
37
}
@@ -49,7 +49,7 @@ def main():
49
49
"model_name": "gpt-4o-mini",
50
50
"tool_choice": "auto"
51
51
},
52
-
"tools": ["retrieve_db"], # Changed from "write_file" to "write_to_file"
52
+
"tool_names": ["retrieve_db"], # Changed from "write_file" to "write_to_file"
53
53
"agent_description": "Use a database retrieval agent to fetch information based on a given query.",
54
54
"parameter_description": "The query to be processed by the database retrieval agent."
55
55
}
@@ -67,7 +67,7 @@ def main():
67
67
"model_name": "gpt-4o-mini",
68
68
"tool_choice": "auto"
69
69
},
70
-
"tools": ["retrieve_file"], # Changed from "write_file" to "write_to_file"
70
+
"tool_names": ["retrieve_file"], # Changed from "write_file" to "write_to_file"
71
71
"agent_description": "Retrieve information from local documents to answer questions or perform tasks.",
72
72
"parameter_description": "The task description specifying the local file and the question to be answered. specify this in natural language"
73
73
}
@@ -85,7 +85,7 @@ def main():
85
85
"model_name": "gpt-4o-mini",
86
86
"tool_choice": "auto"
87
87
},
88
-
"tools": ["bing_search", "scrape"], # Changed from "write_file" to "write_to_file"
88
+
"tool_names": ["bing_search", "scrape"], # Changed from "write_file" to "write_to_file"
89
89
"agent_description": "Perform a search using API and return the searched results.",
90
90
"parameter_description": "The task description describing what to read or write."
91
91
}
@@ -103,7 +103,7 @@ def main():
103
103
"model_name": "gpt-4o-mini",
104
104
"tool_choice": "auto"
105
105
},
106
-
"tools": ["execute_shell_command", "run_python_script"], # Changed from "write_file" to "write_to_file"
106
+
"tool_names": ["execute_shell_command", "run_python_script"], # Changed from "write_file" to "write_to_file"
107
107
"agent_description": "Execute some script in a subprocess, either run a bash script, or run a python script ",
108
108
"parameter_description": "The task description describing what to execute in the subprocess."
Copy file name to clipboardExpand all lines: examples/composite/coding/CodingAgent.py
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ def main():
32
32
"model_name": "gpt-4o-mini",
33
33
"tool_choice": "auto"
34
34
},
35
-
"tools": ["read_file", "write_to_file", "generate_and_download_image"], # Changed from "write_file" to "write_to_file"
35
+
"tool_names": ["read_file", "write_to_file", "generate_and_download_image"], # Changed from "write_file" to "write_to_file"
36
36
"agent_description": "Read or write content from/to a file, or generate and save an image using text input",
37
37
"parameter_description": "The task description detailing what to read, write, or generate. This can include file operations or image generation requests."
38
38
}
@@ -51,7 +51,7 @@ def main():
51
51
"model_name": "gpt-4o-mini",
52
52
"tool_choice": "auto"
53
53
},
54
-
"tools": ["execute_shell_command", "run_python_script"], # Changed from "write_file" to "write_to_file"
54
+
"tool_names": ["execute_shell_command", "run_python_script"], # Changed from "write_file" to "write_to_file"
55
55
"agent_description": "Execute some script in a subprocess, either run a bash script, or run a python script ",
56
56
"parameter_description": "The task description describing what to execute in the subprocess."
Copy file name to clipboardExpand all lines: examples/composite/research/ResearchAgent.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ def main():
31
31
"model_name": "gpt-4o-mini",
32
32
"tool_choice": "auto"
33
33
},
34
-
"tools": ["read_file", "write_to_file", "generate_and_download_image"], # Changed from "write_file" to "write_to_file"
34
+
"tool_names": ["read_file", "write_to_file", "generate_and_download_image"], # Changed from "write_file" to "write_to_file"
35
35
"agent_description": "Read or write content from/to a file, or generate and save an image using text input",
36
36
"parameter_description": "The task description detailing what to read, write, or generate. This can include file operations or image generation requests."
37
37
}
@@ -49,7 +49,7 @@ def main():
49
49
"model_name": "gpt-4o-mini",
50
50
"tool_choice": "auto"
51
51
},
52
-
"tools": ["bing_search", "scrape"], # Changed from "write_file" to "write_to_file"
52
+
"tool_names": ["bing_search", "scrape"], # Changed from "write_file" to "write_to_file"
53
53
"agent_description": "Perform a search using API and return the searched results.",
54
54
"parameter_description": "The task description describing what to read or write."
55
55
}
@@ -67,7 +67,7 @@ def main():
67
67
"model_name": "gpt-4o-mini",
68
68
"tool_choice": "auto"
69
69
},
70
-
"tools": ["execute_shell_command", "run_python_script"], # Changed from "write_file" to "write_to_file"
70
+
"tool_names": ["execute_shell_command", "run_python_script"], # Changed from "write_file" to "write_to_file"
71
71
"agent_description": "Execute some script in a subprocess, either run a bash script, or run a python script ",
72
72
"parameter_description": "The task description describing what to execute in the subprocess."
0 commit comments