Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,8 @@ def query_chromadb():
|
|
76 |
raise Exception(f"{DB_DIR} does not exist, nothing can be queried")
|
77 |
|
78 |
# Select which embeddings we want to use
|
79 |
-
#embeddings = OpenAIEmbeddings()
|
|
|
80 |
# Load Vector store from local disk
|
81 |
vectorstore = Chroma(persist_directory=DB_DIR, embedding_function=embeddings)
|
82 |
#vectorstore.persist()
|
|
|
76 |
raise Exception(f"{DB_DIR} does not exist, nothing can be queried")
|
77 |
|
78 |
# Select which embeddings we want to use
|
79 |
+
#embeddings = OpenAIEmbeddings()
|
80 |
+
|
81 |
# Load Vector store from local disk
|
82 |
vectorstore = Chroma(persist_directory=DB_DIR, embedding_function=embeddings)
|
83 |
#vectorstore.persist()
|