Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +26 -0
requirements.txt
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core AI & LangChain
|
| 2 |
+
langchain>=1.1.0
|
| 3 |
+
langchain-core>=0.0.200
|
| 4 |
+
langchain-groq>=0.0.12
|
| 5 |
+
langchain-community>=0.0.30
|
| 6 |
+
|
| 7 |
+
# Gradio UI
|
| 8 |
+
gradio==4.44.0
|
| 9 |
+
|
| 10 |
+
# Web server
|
| 11 |
+
fastapi==0.115.2
|
| 12 |
+
uvicorn==0.30.0
|
| 13 |
+
|
| 14 |
+
# Utilities
|
| 15 |
+
python-dotenv>=1.0.0
|
| 16 |
+
|
| 17 |
+
# Data handling
|
| 18 |
+
numpy>=1.24.0
|
| 19 |
+
pandas>=2.0.0
|
| 20 |
+
|
| 21 |
+
# Regex, date/time
|
| 22 |
+
regex>=2023.6.3
|
| 23 |
+
|
| 24 |
+
# Optional NLP
|
| 25 |
+
nltk>=3.8.0
|
| 26 |
+
spacy==3.7.2
|