Spaces:
Runtime error
Runtime error
Testing Natural Lang SQL
Browse files- requirements.txt +11 -1
requirements.txt
CHANGED
|
@@ -1,5 +1,15 @@
|
|
| 1 |
-
huggingface_hub>=0.25.0
|
| 2 |
openai>=1.51.0
|
| 3 |
huggingface-hub>=0.25.0 # only needed if you use InferenceClient later
|
| 4 |
httpx>=0.27.0 # used internally by OpenAI SDK
|
| 5 |
python-dotenv>=1.0.1 # if you load HF_TOKEN from .env
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
openai>=1.51.0
|
| 2 |
huggingface-hub>=0.25.0 # only needed if you use InferenceClient later
|
| 3 |
httpx>=0.27.0 # used internally by OpenAI SDK
|
| 4 |
python-dotenv>=1.0.1 # if you load HF_TOKEN from .env
|
| 5 |
+
|
| 6 |
+
langchain==0.1.0
|
| 7 |
+
langchain-community==0.0.13
|
| 8 |
+
langchain-huggingface==0.0.1
|
| 9 |
+
transformers==4.36.0
|
| 10 |
+
torch==2.1.0
|
| 11 |
+
sentence-transformers==2.2.2
|
| 12 |
+
faiss-cpu==1.7.4 # or faiss-gpu if using GPU for embeddings too
|
| 13 |
+
sqlalchemy==2.0.23
|
| 14 |
+
accelerate==0.25.0
|
| 15 |
+
bitsandbytes==0.41.3 # For quantization (optional)
|