Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +22 -9
requirements.txt
CHANGED
|
@@ -1,20 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
torch>=2.0.0
|
| 7 |
-
transformers>=4.
|
| 8 |
-
accelerate>=0.
|
| 9 |
-
bitsandbytes>=0.
|
|
|
|
|
|
|
| 10 |
python-dotenv>=1.0.0
|
|
|
|
|
|
|
| 11 |
matplotlib>=3.7.0
|
| 12 |
plotly>=5.15.0
|
| 13 |
pandas>=2.0.0
|
| 14 |
numpy>=1.24.0
|
| 15 |
scipy>=1.10.0
|
|
|
|
|
|
|
| 16 |
langsmith
|
| 17 |
-
langchain-openai
|
| 18 |
|
| 19 |
-
#
|
|
|
|
|
|
|
|
|
|
| 20 |
# pip install -r requirements.txt
|
|
|
|
| 1 |
+
# Core LangChain and LangGraph packages
|
| 2 |
+
langgraph>=0.2.0
|
| 3 |
+
langchain-core>=0.3.0
|
| 4 |
+
langchain-community>=0.3.0
|
| 5 |
+
langchain-huggingface>=0.1.0
|
| 6 |
|
| 7 |
+
# UI Framework
|
| 8 |
+
gradio>=4.44.0
|
| 9 |
+
|
| 10 |
+
# ML/AI Core
|
| 11 |
torch>=2.0.0
|
| 12 |
+
transformers>=4.41.2
|
| 13 |
+
accelerate>=0.30.0
|
| 14 |
+
bitsandbytes>=0.43.0
|
| 15 |
+
|
| 16 |
+
# Utilities
|
| 17 |
python-dotenv>=1.0.0
|
| 18 |
+
|
| 19 |
+
# Data Science and Visualization
|
| 20 |
matplotlib>=3.7.0
|
| 21 |
plotly>=5.15.0
|
| 22 |
pandas>=2.0.0
|
| 23 |
numpy>=1.24.0
|
| 24 |
scipy>=1.10.0
|
| 25 |
+
|
| 26 |
+
# Monitoring and Debugging (Optional)
|
| 27 |
langsmith
|
|
|
|
| 28 |
|
| 29 |
+
# Optional: OpenAI integration if needed
|
| 30 |
+
# langchain-openai
|
| 31 |
+
|
| 32 |
+
# Installation command:
|
| 33 |
# pip install -r requirements.txt
|