Update requirements.txt
Browse files- requirements.txt +14 -4
requirements.txt
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
|
|
| 1 |
streamlit
|
| 2 |
-
openai>=1.0.0
|
| 3 |
pandas
|
| 4 |
numpy
|
| 5 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
langchain-core
|
|
|
|
| 7 |
langchain-openai
|
| 8 |
-
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core app
|
| 2 |
streamlit
|
|
|
|
| 3 |
pandas
|
| 4 |
numpy
|
| 5 |
+
|
| 6 |
+
# OpenAI LLM & embeddings (for openai>=1.0)
|
| 7 |
+
openai>=1.0.0
|
| 8 |
+
|
| 9 |
+
# LangChain components
|
| 10 |
+
langchain
|
| 11 |
langchain-core
|
| 12 |
+
langchain-community
|
| 13 |
langchain-openai
|
| 14 |
+
|
| 15 |
+
# For SQLite (Python stdlib, but add for safety in HF Spaces)
|
| 16 |
+
pysqlite3-binary
|
| 17 |
+
|
| 18 |
+
# General
|
| 19 |
+
tqdm
|