mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
7 lines
109 B
Python
7 lines
109 B
Python
from peewee import *
|
|
from config import DATA_DIR
|
|
|
|
|
|
DB = SqliteDatabase(f"{DATA_DIR}/ollama.db")
|
|
DB.connect()
|