epalvarez commited on
Commit
0d2f87c
·
verified ·
1 Parent(s): f8e9437

correcting syntax error in app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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