Update app.py
Browse files
app.py
CHANGED
@@ -36,6 +36,7 @@ embedding_model = HuggingFaceEmbeddings(model_name = "all-MiniLM-L6-v2")
|
|
36 |
# Returns a FAISS wrapper vector store. Input is a list of strings. from_documents method used documents to Return VectorStore
|
37 |
|
38 |
data = dataset["text"]
|
|
|
39 |
data = data.add_faiss_index("embeddings")
|
40 |
# adds a column that has a index of embeddings
|
41 |
|
|
|
36 |
# Returns a FAISS wrapper vector store. Input is a list of strings. from_documents method used documents to Return VectorStore
|
37 |
|
38 |
data = dataset["text"]
|
39 |
+
print(data)
|
40 |
data = data.add_faiss_index("embeddings")
|
41 |
# adds a column that has a index of embeddings
|
42 |
|