Spaces:
Sleeping
Sleeping
fixed a minor bug
Browse files- src/streamlit_app.py +2 -2
src/streamlit_app.py
CHANGED
|
@@ -112,7 +112,7 @@ async def deep_research(query: str, max_depth: int, time_limit: int, max_urls: i
|
|
| 112 |
research_agent= Agent(
|
| 113 |
|
| 114 |
name= "research_agent",
|
| 115 |
-
|
| 116 |
|
| 117 |
1. Use the deep_research tool to gather comprehensive information
|
| 118 |
- Always use these parameters:
|
|
@@ -132,7 +132,7 @@ elaboration_agent= Agent(
|
|
| 132 |
|
| 133 |
name= "elaboration_agent",
|
| 134 |
|
| 135 |
-
|
| 136 |
|
| 137 |
When given a research report:
|
| 138 |
1. Analyze the structure and content of the report
|
|
|
|
| 112 |
research_agent= Agent(
|
| 113 |
|
| 114 |
name= "research_agent",
|
| 115 |
+
instructions= """ you are a research assistant that can perform deep web research on any topic. When given a research topic, or question:
|
| 116 |
|
| 117 |
1. Use the deep_research tool to gather comprehensive information
|
| 118 |
- Always use these parameters:
|
|
|
|
| 132 |
|
| 133 |
name= "elaboration_agent",
|
| 134 |
|
| 135 |
+
instructions= """ You are an expert content enhancer specializing in research elaboration.
|
| 136 |
|
| 137 |
When given a research report:
|
| 138 |
1. Analyze the structure and content of the report
|