Restricting dependencies to see if it resolves Huggingface slowness
Browse files- chainlit.md +7 -1
- requirements.txt +3 -3
chainlit.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1 |
# AirBnB 10K Chat
|
2 |
|
3 |
-
### I am your personal assistant that can help answer questions about AirBnB 10K filing
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# AirBnB 10K Chat
|
2 |
|
3 |
+
### I am your personal assistant that can help answer questions about AirBnB 10K filing
|
4 |
+
|
5 |
+
**Lessons not learned**
|
6 |
+
- Chainlit.md is not rendering on the app
|
7 |
+
- Not able to answer structured query (Q2) correctly
|
8 |
+
- HuggingFace space setup takes way too long. Solved it through CPU upgrade
|
9 |
+
- Work around Huggingface library restrictions on Context window
|
requirements.txt
CHANGED
@@ -5,6 +5,6 @@ langchain_core==0.2.9
|
|
5 |
langchain_huggingface==0.0.3
|
6 |
langchain_text_splitters==0.2.1
|
7 |
python-dotenv==1.0.1
|
8 |
-
faiss-cpu
|
9 |
-
pymupdf
|
10 |
-
qdrant-client
|
|
|
5 |
langchain_huggingface==0.0.3
|
6 |
langchain_text_splitters==0.2.1
|
7 |
python-dotenv==1.0.1
|
8 |
+
faiss-cpu==1.8.0
|
9 |
+
pymupdf==1.24.6
|
10 |
+
qdrant-client==1.9.2
|