Spaces:
Sleeping
Sleeping
rameshmoorthy
commited on
Update backend/semantic_search.py
Browse files
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)
|