Sergidev commited on
Commit
0673aa9
1 Parent(s): eb3e56d

Change Database Directory

Files changed (1) hide show
  1. modules/pmbl.py +1 -1
modules/pmbl.py CHANGED
@@ -10,7 +10,7 @@ class PMBL:
10
  self.executor = ThreadPoolExecutor(max_workers=6) # Adjust the max_workers as needed
11
 
12
  def init_db(self):
13
- conn = sqlite3.connect('./chat_history.db')
14
  c = conn.cursor()
15
  c.execute('''CREATE TABLE IF NOT EXISTS chats
16
  (id INTEGER PRIMARY KEY AUTOINCREMENT,
 
10
  self.executor = ThreadPoolExecutor(max_workers=6) # Adjust the max_workers as needed
11
 
12
  def init_db(self):
13
+ conn = sqlite3.connect('chat_history.db')
14
  c = conn.cursor()
15
  c.execute('''CREATE TABLE IF NOT EXISTS chats
16
  (id INTEGER PRIMARY KEY AUTOINCREMENT,