Commit ·
b70637a
1
Parent(s): a394be7
chore(agent): remove verbose research complete banner from web search output
Browse files
agent/agents/websearchagents.py
CHANGED
|
@@ -281,9 +281,9 @@ def web_search_agents(origin_question: str, query: str) -> str:
|
|
| 281 |
combined_input = "\n\n---\n\n".join(subagent_results)
|
| 282 |
result = combine_result_agent(origin_question, combined_input)
|
| 283 |
|
| 284 |
-
print(f"\n{Fore.YELLOW}{'=' * 60}")
|
| 285 |
-
print("[WebSearchAgents] Research complete")
|
| 286 |
-
print(f"{'=' * 60}")
|
| 287 |
print(f"[WebSearchAgents -> SupervisorAgent] {result}")
|
| 288 |
print(f"{'=' * 60}{Style.RESET_ALL}\n")
|
| 289 |
|
|
|
|
| 281 |
combined_input = "\n\n---\n\n".join(subagent_results)
|
| 282 |
result = combine_result_agent(origin_question, combined_input)
|
| 283 |
|
| 284 |
+
# print(f"\n{Fore.YELLOW}{'=' * 60}")
|
| 285 |
+
# print("[WebSearchAgents] Research complete")
|
| 286 |
+
# print(f"{'=' * 60}")
|
| 287 |
print(f"[WebSearchAgents -> SupervisorAgent] {result}")
|
| 288 |
print(f"{'=' * 60}{Style.RESET_ALL}\n")
|
| 289 |
|