mirror of
https://github.com/open-webui/open-webui
synced 2025-05-15 11:06:15 +00:00
7 lines
113 B
Python
7 lines
113 B
Python
from peewee import *
|
|
from config import DATA_DIR
|
|
|
|
|
|
DB = SqliteDatabase(str(DATA_DIR / "ollama.db"))
|
|
DB.connect()
|