Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +21 -3
requirements.txt
CHANGED
|
@@ -1,3 +1,21 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core libraries
|
| 2 |
+
PyMuPDF==1.23.9
|
| 3 |
+
|
| 4 |
+
# Gradio (for UI)
|
| 5 |
+
gradio==4.34.0
|
| 6 |
+
|
| 7 |
+
# LangChain text splitter (we only use this from LangChain)
|
| 8 |
+
langchain-core==0.1.35
|
| 9 |
+
langchain-text-splitters==0.0.1
|
| 10 |
+
|
| 11 |
+
# Groq API client (official SDK)
|
| 12 |
+
groq==0.5.0
|
| 13 |
+
|
| 14 |
+
# Other utilities (safe to add)
|
| 15 |
+
tqdm==4.66.2 # optional, useful for progress bars in loops (can skip if not using)
|
| 16 |
+
|
| 17 |
+
# JSON parsing is built-in, no need to add
|
| 18 |
+
# matplotlib or plotly is not needed unless you're adding graphs
|
| 19 |
+
|
| 20 |
+
# For local development convenience (optional)
|
| 21 |
+
python-dotenv==1.0.1 # if you want to load API key from .env file
|