Spaces:
Running
Running
Commit
·
ee048f1
1
Parent(s):
85d55c2
fix: update requirements.txt for HuggingFace Spaces build
Browse files- requirements.txt +33 -1
requirements.txt
CHANGED
|
@@ -1 +1,33 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies for HuggingFace Spaces
|
| 2 |
+
pydantic>=2.7
|
| 3 |
+
pydantic-settings>=2.2
|
| 4 |
+
pydantic-ai>=0.0.16
|
| 5 |
+
|
| 6 |
+
# AI Providers
|
| 7 |
+
openai>=1.0.0
|
| 8 |
+
anthropic>=0.18.0
|
| 9 |
+
|
| 10 |
+
# HTTP & Parsing
|
| 11 |
+
httpx>=0.27
|
| 12 |
+
beautifulsoup4>=4.12
|
| 13 |
+
xmltodict>=0.13
|
| 14 |
+
|
| 15 |
+
# UI (Gradio with MCP support)
|
| 16 |
+
gradio[mcp]>=5.0.0
|
| 17 |
+
|
| 18 |
+
# Utils
|
| 19 |
+
python-dotenv>=1.0
|
| 20 |
+
tenacity>=8.2
|
| 21 |
+
structlog>=24.1
|
| 22 |
+
requests>=2.32.5
|
| 23 |
+
|
| 24 |
+
# Optional: Modal for code execution
|
| 25 |
+
modal>=0.63.0
|
| 26 |
+
|
| 27 |
+
# Optional: LlamaIndex RAG
|
| 28 |
+
llama-index>=0.11.0
|
| 29 |
+
llama-index-llms-openai
|
| 30 |
+
llama-index-embeddings-openai
|
| 31 |
+
llama-index-vector-stores-chroma
|
| 32 |
+
chromadb>=0.4.0
|
| 33 |
+
sentence-transformers>=2.2.0
|