Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- requirements.txt +8 -0
- research_manager.py +1 -1
requirements.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio
|
| 2 |
+
python-dotenv
|
| 3 |
+
sendgrid
|
| 4 |
+
pydantic
|
| 5 |
+
openai
|
| 6 |
+
# Add the agents library here.
|
| 7 |
+
# If it's the one from the OpenAI 'swarm' or 'agents' repo, use:
|
| 8 |
+
git+https://github.com/openai/openai-agents.git
|
research_manager.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
from agents import Runner
|
| 2 |
from search_agent import search_agent
|
| 3 |
from planner_agent import planner_agent, WebSearchItem, WebSearchPlan
|
| 4 |
from writer_agent import writer_agent, ReportData
|
|
|
|
| 1 |
+
from agents import Runner
|
| 2 |
from search_agent import search_agent
|
| 3 |
from planner_agent import planner_agent, WebSearchItem, WebSearchPlan
|
| 4 |
from writer_agent import writer_agent, ReportData
|