forked from open-webui/open-webui
refac: ollama.db renamed to webui.db
This commit is contained in:
parent
74809e7330
commit
6d854125cc
1 changed files with 11 additions and 1 deletions
|
@ -1,6 +1,16 @@
|
||||||
from peewee import *
|
from peewee import *
|
||||||
from config import DATA_DIR
|
from config import DATA_DIR
|
||||||
|
import os
|
||||||
|
|
||||||
|
|
||||||
DB = SqliteDatabase(f"{DATA_DIR}/ollama.db")
|
# Check if the file exists
|
||||||
|
if os.path.exists(f"{DATA_DIR}/ollama.db"):
|
||||||
|
# Rename the file
|
||||||
|
os.rename(f"{DATA_DIR}/ollama.db", f"{DATA_DIR}/webui.db")
|
||||||
|
print("File renamed successfully.")
|
||||||
|
else:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
DB = SqliteDatabase(f"{DATA_DIR}/webui.db")
|
||||||
DB.connect()
|
DB.connect()
|
||||||
|
|
Loading…
Reference in a new issue