Update app.py
Browse files
app.py
CHANGED
|
@@ -35,7 +35,7 @@ embedding_model = HuggingFaceEmbeddings(model_name = "all-MiniLM-L6-v2")
|
|
| 35 |
|
| 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["
|
| 39 |
data = data.add_faiss_index("embeddings")
|
| 40 |
# adds a column that has a index of embeddings
|
| 41 |
|
|
|
|
| 35 |
|
| 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 |
|