Spaces:
Running
Running
Commit
·
4e438f3
1
Parent(s):
4fb11a9
fix: add missing packages to requirements.txt for HuggingFace Spaces
Browse filesAdds agent-framework-core and duckduckgo-search to requirements.txt.
These were in pyproject.toml but missing from requirements.txt, causing:
- Advanced mode to fail with "agent-framework-core not found"
- Web search to be unavailable
Fixes #50
- requirements.txt +6 -0
requirements.txt
CHANGED
|
@@ -7,6 +7,12 @@ pydantic-ai>=0.0.16
|
|
| 7 |
openai>=1.0.0
|
| 8 |
anthropic>=0.18.0
|
| 9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
# HTTP & Parsing
|
| 11 |
httpx>=0.27
|
| 12 |
beautifulsoup4>=4.12
|
|
|
|
| 7 |
openai>=1.0.0
|
| 8 |
anthropic>=0.18.0
|
| 9 |
|
| 10 |
+
# Multi-agent orchestration (Advanced mode)
|
| 11 |
+
agent-framework-core>=1.0.0b251120
|
| 12 |
+
|
| 13 |
+
# Web search
|
| 14 |
+
duckduckgo-search>=5.0
|
| 15 |
+
|
| 16 |
# HTTP & Parsing
|
| 17 |
httpx>=0.27
|
| 18 |
beautifulsoup4>=4.12
|