Skip to content

Commit a919144

Browse files
committed
fix agent name
1 parent 95a3cf1 commit a919144

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/composite/MasterAgent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def main():
167167

168168
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"
169169
result = main_agent.execute(task)
170-
print("IO Agent Result:", result)
170+
print("Agent Result:", result)
171171

172172

173173

examples/composite/coding/CodingAgent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def main():
8484
# # # Example usage
8585
task = "The coding problem is: the problem is Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice.You can return the answer in any order., you first write code per instruction, then write test case, and run the test, if there is bug, debug it"
8686
result = coding_agent.execute(task)
87-
print("IO Agent Result:", result)
87+
print("Coding Agent Result:", result)
8888

8989

9090
if __name__ == "__main__":

examples/composite/research/ResearchAgent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def main():
101101
# # # Example usage
102102
task = "Fetch the UK's GDP over the past 5 years, then write python script to draw a line graph of it and save the image to the current folder. And then run the python script."
103103
result = research_agent.execute(task)
104-
print("IO Agent Result:", result)
104+
print("Research Agent Result:", result)
105105

106106

107107
if __name__ == "__main__":

0 commit comments

Comments
 (0)