Spaces:
Sleeping
Sleeping
correcting syntax error in app.py
Browse files
app.py
CHANGED
@@ -105,7 +105,7 @@ print(f"Vector database location:\n{persisted_vectordb_location}\n")
|
|
105 |
# vector database constructor Chroma()
|
106 |
vectorstore_persisted = Chroma(
|
107 |
collection_name = tesla_10k_collection,
|
108 |
-
persist_directory = persisted_vectordb_location # './tesla_db',
|
109 |
embedding_function = embedding_model
|
110 |
)
|
111 |
|
|
|
105 |
# vector database constructor Chroma()
|
106 |
vectorstore_persisted = Chroma(
|
107 |
collection_name = tesla_10k_collection,
|
108 |
+
persist_directory = persisted_vectordb_location, # './tesla_db',
|
109 |
embedding_function = embedding_model
|
110 |
)
|
111 |
|