open-webui/backend/apps/web/internal/db.py

5 lines
75 B
Python
Raw Normal View History

2023-12-26 06:44:28 +01:00
from peewee import *
DB = SqliteDatabase("./data/ollama.db")
2023-12-26 06:44:28 +01:00
DB.connect()