Update src/streamlit_app.py
Browse files- src/streamlit_app.py +3 -1
src/streamlit_app.py
CHANGED
@@ -103,6 +103,7 @@ research_agent = Agent(
|
|
103 |
4. Include proper citations for all sources
|
104 |
5. Highlight key findings and insights
|
105 |
""",
|
|
|
106 |
tools = [deep_research]
|
107 |
)
|
108 |
|
@@ -122,7 +123,8 @@ elaboration_agent = Agent(
|
|
122 |
3. Maintain academic rigor and factual accuracy
|
123 |
4. Preserve the original structure while making it more comprehensive
|
124 |
5. Ensure all additions are relevant and valuable to the topic.
|
125 |
-
"""
|
|
|
126 |
)
|
127 |
|
128 |
async def run_research_process(topic : str):
|
|
|
103 |
4. Include proper citations for all sources
|
104 |
5. Highlight key findings and insights
|
105 |
""",
|
106 |
+
model="gpt-4o-mini",
|
107 |
tools = [deep_research]
|
108 |
)
|
109 |
|
|
|
123 |
3. Maintain academic rigor and factual accuracy
|
124 |
4. Preserve the original structure while making it more comprehensive
|
125 |
5. Ensure all additions are relevant and valuable to the topic.
|
126 |
+
""",
|
127 |
+
model="gpt-4.1-nano"
|
128 |
)
|
129 |
|
130 |
async def run_research_process(topic : str):
|