Upload requirements.txt
Browse files- requirements.txt +26 -0
requirements.txt
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core
|
| 2 |
+
pandas==2.2.2
|
| 3 |
+
numpy==1.26.4
|
| 4 |
+
matplotlib==3.9.0
|
| 5 |
+
|
| 6 |
+
# LangChain and Groq
|
| 7 |
+
langchain==0.3.8
|
| 8 |
+
langchain-community==0.3.2
|
| 9 |
+
langchain-groq==0.2.1
|
| 10 |
+
|
| 11 |
+
# Vector Store (Chroma)
|
| 12 |
+
chromadb==0.5.18
|
| 13 |
+
|
| 14 |
+
# Embeddings
|
| 15 |
+
sentence-transformers==3.2.1
|
| 16 |
+
|
| 17 |
+
# UI
|
| 18 |
+
gradio==4.44.1
|
| 19 |
+
|
| 20 |
+
# Support libs
|
| 21 |
+
pydantic==2.9.2
|
| 22 |
+
tabulate==0.9.0
|
| 23 |
+
pyyaml==6.0.2
|
| 24 |
+
|
| 25 |
+
# Optional
|
| 26 |
+
tqdm==4.66.5
|