TheBobBob commited on
Commit
cf4445f
·
verified ·
1 Parent(s): 3065ade

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -145,7 +145,8 @@ def create_vector_db(final_items):
145
  # Initialize the database
146
  db = client.get_or_create_collection(name=collection_name)
147
  if db is None:
148
- print("Database has not been grabbed.")
 
149
  documents_to_add = []
150
  ids_to_add = []
151
 
 
145
  # Initialize the database
146
  db = client.get_or_create_collection(name=collection_name)
147
  if db is None:
148
+ raise ValueError("Db not created!")
149
+ break
150
  documents_to_add = []
151
  ids_to_add = []
152