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
Copy file name to clipboardExpand all lines: litemultiagent/main.py
+9-9
Original file line number
Diff line number
Diff line change
@@ -124,8 +124,8 @@ def main():
124
124
file_retrieval_agent_config,
125
125
db_retrieval_agent_config
126
126
],
127
-
"agent_description": "Use a database retrieval agent to fetch information based on a given query.",
128
-
"parameter_description": "The query to be processed by the database retrieval agent."
127
+
"agent_description": "Use a smart research assistant to look up information using multiple sources including web search, database retrieval, and local file retrieval.",
128
+
"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"
task="generate a image of a ginger cat and save it as ginger_cat.png"
156
-
result=main_agent.execute(task)
157
-
print("IO Agent Result:", result)
158
-
159
-
task="write python script to calculate the sum from 1 to 10, and run the python script to get result"
160
-
result=main_agent.execute(task)
161
-
print("IO Agent Result:", result)
155
+
# task = "generate a image of a ginger cat and save it as ginger_cat.png"
156
+
# result = main_agent.execute(task)
157
+
# print("IO Agent Result:", result)
158
+
#
159
+
# task = "write python script to calculate the sum from 1 to 10, and run the python script to get result"
160
+
# result = main_agent.execute(task)
161
+
# print("IO Agent Result:", result)
162
162
163
163
task="browse web to search and check the brands of dining table, and summarize the results in a table, save the table into a markdown file called summary.md"
0 commit comments