mirror of
https://github.com/open-webui/open-webui
synced 2024-12-25 05:12:16 +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()
|