mirror of
https://git.mirrors.martin98.com/https://github.com/open-webui/open-webui
synced 2025-06-22 13:05:56 +08: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()
|