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",
25
-
"parameter_description": "The task description detailing what to read, write, or generate. This can include file operations or image generation requests."
24
+
"system_prompt": "You are an ai agent, Read or write content from/to a file, or generate and save an image using text input",
"system_prompt": "You are an AI agent. Read or write content from/to a file, or generate and save an image using text input",
30
31
"agent_description": "Read or write content from/to a file, or generate and save an image using text input",
31
32
"parameter_description": "The task description detailing what to read, write, or generate. This can include file operations or image generation requests."
32
33
}
@@ -36,7 +37,8 @@ def main():
36
37
"type": "atomic",
37
38
"agent_class": "FunctionCallingAgent",
38
39
"meta_data": {},
39
-
"tool_names": ["retrieve_db"], # Changed from "write_file" to "write_to_file"
40
+
"tool_names": ["retrieve_db"],
41
+
"system_prompt": "You are an AI agent. Use a database retrieval agent to fetch information based on a given query.",
40
42
"agent_description": "Use a database retrieval agent to fetch information based on a given query.",
41
43
"parameter_description": "The query to be processed by the database retrieval agent."
42
44
}
@@ -46,7 +48,8 @@ def main():
46
48
"type": "atomic",
47
49
"agent_class": "FunctionCallingAgent",
48
50
"meta_data": {},
49
-
"tool_names": ["retrieve_file"], # Changed from "write_file" to "write_to_file"
51
+
"tool_names": ["retrieve_file"],
52
+
"system_prompt": "You are an AI agent. Retrieve information from local documents to answer questions or perform tasks.",
50
53
"agent_description": "Retrieve information from local documents to answer questions or perform tasks.",
51
54
"parameter_description": "The task description specifying the local file and the question to be answered. specify this in natural language"
52
55
}
@@ -56,7 +59,8 @@ def main():
56
59
"type": "atomic",
57
60
"agent_class": "FunctionCallingAgent",
58
61
"meta_data": {},
59
-
"tool_names": ["bing_search", "scrape"], # Changed from "write_file" to "write_to_file"
62
+
"tool_names": ["bing_search", "scrape"],
63
+
"system_prompt": "You are an AI agent. Perform a search using API and return the searched results.",
60
64
"agent_description": "Perform a search using API and return the searched results.",
61
65
"parameter_description": "The task description describing what to read or write."
62
66
}
@@ -66,7 +70,8 @@ def main():
66
70
"type": "atomic",
67
71
"agent_class": "FunctionCallingAgent",
68
72
"meta_data": {},
69
-
"tool_names": ["execute_shell_command", "run_python_script"], # Changed from "write_file" to "write_to_file"
"system_prompt": "You are an AI agent. Execute some script in a subprocess, either run a bash script, or run a python script ",
70
75
"agent_description": "Execute some script in a subprocess, either run a bash script, or run a python script ",
71
76
"parameter_description": "The task description describing what to execute in the subprocess."
72
77
}
@@ -82,6 +87,7 @@ def main():
82
87
file_retrieval_agent_config,
83
88
db_retrieval_agent_config
84
89
],
90
+
"system_prompt": "You are an AI agent, Use a smart research assistant to look up information using multiple sources including web search, database retrieval, and local file retrieval.",
85
91
"agent_description": "Use a smart research assistant to look up information using multiple sources including web search, database retrieval, and local file retrieval.",
86
92
"parameter_description": "The task description specifying the information source (web search, database, local file) and the question to be answered. specify this in natural language"
87
93
}
@@ -97,6 +103,7 @@ def main():
97
103
exec_agent_config,
98
104
io_agent_config,
99
105
],
106
+
"system_prompt": "You are an AI agent that leverage tools and sub agents",
0 commit comments