Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +34 -0
requirements.txt
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core Python version
|
| 2 |
+
# Python >= 3.9 recommended
|
| 3 |
+
|
| 4 |
+
# Web UI
|
| 5 |
+
gradio>=4.0.0
|
| 6 |
+
|
| 7 |
+
# Typing & utilities (usually included, but listed for clarity)
|
| 8 |
+
typing-extensions>=4.5.0
|
| 9 |
+
|
| 10 |
+
# Logging (standard library, no install needed)
|
| 11 |
+
# datetime (standard library)
|
| 12 |
+
# json (standard library)
|
| 13 |
+
# time (standard library)
|
| 14 |
+
# os (standard library)
|
| 15 |
+
|
| 16 |
+
# Optional / External integrations
|
| 17 |
+
requests>=2.31.0
|
| 18 |
+
|
| 19 |
+
# If your WebSearchEngine uses SerpAPI
|
| 20 |
+
google-search-results>=2.4.2
|
| 21 |
+
|
| 22 |
+
# If your WebBrowser uses HTML parsing
|
| 23 |
+
beautifulsoup4>=4.12.2
|
| 24 |
+
lxml>=4.9.3
|
| 25 |
+
|
| 26 |
+
# If reasoning or memory modules use embeddings / ML (safe defaults)
|
| 27 |
+
numpy>=1.24.0
|
| 28 |
+
scikit-learn>=1.3.0
|
| 29 |
+
|
| 30 |
+
# If memory system uses vector stores (optional but common)
|
| 31 |
+
faiss-cpu>=1.7.4
|
| 32 |
+
|
| 33 |
+
# If async or concurrency is used internally
|
| 34 |
+
aiohttp>=3.9.0
|