Spaces:
Sleeping
Sleeping
Upload requirements.txt
Browse files- requirements.txt +4 -10
requirements.txt
CHANGED
|
@@ -1,26 +1,20 @@
|
|
| 1 |
-
# LexiBot Backend - FastAPI + Pinecone
|
| 2 |
-
# Updated for headless API deployment on Hugging Face Spaces
|
| 3 |
-
|
| 4 |
# Core Framework
|
| 5 |
fastapi
|
| 6 |
uvicorn[standard]
|
| 7 |
python-dotenv
|
| 8 |
|
| 9 |
# LangChain Stack
|
| 10 |
-
langchain
|
| 11 |
-
langchain-community
|
|
|
|
| 12 |
langchain-google-genai
|
| 13 |
langchain-pinecone
|
| 14 |
|
| 15 |
# Vector Database
|
| 16 |
pinecone-client
|
| 17 |
|
| 18 |
-
# Document Processing
|
| 19 |
-
pypdf
|
| 20 |
-
unstructured
|
| 21 |
-
tiktoken
|
| 22 |
-
|
| 23 |
# Utilities
|
| 24 |
pydantic>=2.0
|
| 25 |
aiohttp
|
| 26 |
requests
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# Core Framework
|
| 2 |
fastapi
|
| 3 |
uvicorn[standard]
|
| 4 |
python-dotenv
|
| 5 |
|
| 6 |
# LangChain Stack
|
| 7 |
+
langchain==0.2.11
|
| 8 |
+
langchain-community==0.2.10
|
| 9 |
+
langchain-core==0.2.24
|
| 10 |
langchain-google-genai
|
| 11 |
langchain-pinecone
|
| 12 |
|
| 13 |
# Vector Database
|
| 14 |
pinecone-client
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
# Utilities
|
| 17 |
pydantic>=2.0
|
| 18 |
aiohttp
|
| 19 |
requests
|
| 20 |
+
tiktoken
|