Namitg02 commited on
Commit
e4728d9
·
verified ·
1 Parent(s): 508eeb3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ from langchain_community.embeddings import HuggingFaceEmbeddings
12
  embedding_model = HuggingFaceEmbeddings(model_name = "all-MiniLM-L6-v2")
13
 
14
  from langchain_community.vectorstores import FAISS
15
- data = FAISS.from_documents(docs, embedding_model)
16
 
17
  #data = dataset["train"]
18
  data = data.add_faiss_index("embeddings") # column name that has the embeddings of the dataset
 
12
  embedding_model = HuggingFaceEmbeddings(model_name = "all-MiniLM-L6-v2")
13
 
14
  from langchain_community.vectorstores import FAISS
15
+ data = FAISS.from_texts(docs, embedding_model)
16
 
17
  #data = dataset["train"]
18
  data = data.add_faiss_index("embeddings") # column name that has the embeddings of the dataset