rameshmoorthy commited on
Commit
9e46748
·
verified ·
1 Parent(s): c5733c8

Update backend/semantic_search.py

Browse files
Files changed (1) hide show
  1. backend/semantic_search.py +1 -0
backend/semantic_search.py CHANGED
@@ -23,5 +23,6 @@ retriever = SentenceTransformer(EMB_MODEL_NAME)
23
 
24
  # db
25
  db_uri = os.path.join(Path(__file__).parents[1], ".lancedb1")
 
26
  db = lancedb.connect(db_uri)
27
  table = db.open_table(DB_TABLE_NAME)
 
23
 
24
  # db
25
  db_uri = os.path.join(Path(__file__).parents[1], ".lancedb1")
26
+ print(f'DB URL is {db_uri}')
27
  db = lancedb.connect(db_uri)
28
  table = db.open_table(DB_TABLE_NAME)