Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +14 -14
requirements.txt
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
torch
|
2 |
-
transformers
|
3 |
-
sentence-transformers
|
4 |
-
langchain==0.3.7
|
5 |
-
langchain-community
|
6 |
-
tqdm
|
7 |
-
accelerate
|
8 |
-
pypdf
|
9 |
-
faiss-gpu
|
10 |
-
ragas
|
11 |
-
nltk
|
12 |
-
langchain_huggingface
|
13 |
-
qdrant-client
|
14 |
-
chromadb
|
|
|
1 |
+
torch # from pytorch , deep learing framework and used to check hardware cpu or gpu
|
2 |
+
transformers # used for importing open source model
|
3 |
+
sentence-transformers # used for creating embedding for sentences and similarity comparison
|
4 |
+
langchain==0.3.7 # used for construction of LLM based application , using tools
|
5 |
+
langchain-community # community supported tools for advanced projects
|
6 |
+
tqdm # percentage display or bar implementation
|
7 |
+
accelerate # scalling pytorch models across GPU.
|
8 |
+
pypdf # used to extract pdf into text
|
9 |
+
faiss-gpu # One of the best Vector db for small dataset
|
10 |
+
ragas # used to evaluate answer for LLM model
|
11 |
+
nltk # used for Natural language processing - tokenization ( swimming - swimm - 1 token + ing - 1 token )
|
12 |
+
langchain_huggingface # Free API for LLM model ( dependency on crowd )
|
13 |
+
qdrant-client # One of the Vector db
|
14 |
+
chromadb # One of the best Vector db
|