pvanand commited on
Commit
73a2ea8
·
verified ·
1 Parent(s): ed6643b

Update rag_routerv2.py

Browse files
Files changed (1) hide show
  1. rag_routerv2.py +1 -1
rag_routerv2.py CHANGED
@@ -35,7 +35,7 @@ def get_db_connection(db_path: str = "./lancedb/dev"):
35
  return lancedb.connect(db_path)
36
 
37
  def get_db():
38
- conn = sqlite3.connect('./data/tables.db')
39
  conn.row_factory = sqlite3.Row
40
  return conn
41
 
 
35
  return lancedb.connect(db_path)
36
 
37
  def get_db():
38
+ conn = sqlite3.connect('./data/tablesv2.db')
39
  conn.row_factory = sqlite3.Row
40
  return conn
41