Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -27,9 +27,9 @@ if uploaded_file:
|
|
27 |
# Initialize the CSVLoader to load the uploaded CSV file
|
28 |
loader = CSVLoader(file_path=tmp_file_path, encoding="utf-8", csv_args={'delimiter': ','})
|
29 |
data = loader.load()
|
|
|
30 |
db.save_local(DB_FAISS_PATH)
|
31 |
llm = load_llm()
|
32 |
-
|
33 |
chain = ConversationalRetrievalChain.from_llm(llm=llm, retriever=db.as_retriever())
|
34 |
|
35 |
|
@@ -90,11 +90,6 @@ if uploaded_file:
|
|
90 |
text_splitter = RecursiveCharacterTextSplitter(chunk_size=500, chunk_overlap=20)
|
91 |
text_chunks = text_splitter.split_documents(data)
|
92 |
|
93 |
-
print(len(text_chunks))
|
94 |
-
|
95 |
-
# Download Sentence Transformers Embedding From Hugging Face
|
96 |
-
embeddings = HuggingFaceEmbeddings(model_name='sentence-transformers/all-MiniLM-L6-v2',
|
97 |
-
model_kwargs={'device': 'cpu'})
|
98 |
|
99 |
# COnverting the text Chunks into embeddings and saving the embeddings into FAISS Knowledge Base
|
100 |
docsearch = FAISS.from_documents(text_chunks, embeddings)
|
|
|
27 |
# Initialize the CSVLoader to load the uploaded CSV file
|
28 |
loader = CSVLoader(file_path=tmp_file_path, encoding="utf-8", csv_args={'delimiter': ','})
|
29 |
data = loader.load()
|
30 |
+
embeddings = HuggingFaceEmbeddings(model_name='sentence-transformers/all-MiniLM-L6-v2',model_kwargs={'device': 'cpu'})
|
31 |
db.save_local(DB_FAISS_PATH)
|
32 |
llm = load_llm()
|
|
|
33 |
chain = ConversationalRetrievalChain.from_llm(llm=llm, retriever=db.as_retriever())
|
34 |
|
35 |
|
|
|
90 |
text_splitter = RecursiveCharacterTextSplitter(chunk_size=500, chunk_overlap=20)
|
91 |
text_chunks = text_splitter.split_documents(data)
|
92 |
|
|
|
|
|
|
|
|
|
|
|
93 |
|
94 |
# COnverting the text Chunks into embeddings and saving the embeddings into FAISS Knowledge Base
|
95 |
docsearch = FAISS.from_documents(text_chunks, embeddings)
|