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