mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
099b1d066b
This reverts commit 9763d885be
.
17 lines
331 B
Python
17 lines
331 B
Python
from peewee import *
|
|
from config import DATA_DIR
|
|
import os
|
|
|
|
|
|
# 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()
|