Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ from transformers import AutoTokenizer, AutoModelForSeq2SeqLM, pipeline
|
|
11 |
logging.basicConfig(level=logging.DEBUG)
|
12 |
|
13 |
def load_vector_store():
|
14 |
-
#
|
15 |
persist_directory = "./chroma_db"
|
16 |
if not os.path.exists(persist_directory):
|
17 |
logging.error(f"The directory '{persist_directory}' does not exist. Please run the ingestion script.")
|
|
|
11 |
logging.basicConfig(level=logging.DEBUG)
|
12 |
|
13 |
def load_vector_store():
|
14 |
+
# Directory to load the vector data
|
15 |
persist_directory = "./chroma_db"
|
16 |
if not os.path.exists(persist_directory):
|
17 |
logging.error(f"The directory '{persist_directory}' does not exist. Please run the ingestion script.")
|