db.py 113 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
from peewee import *
2
from config import DATA_DIR
Timothy J. Baek's avatar
Timothy J. Baek committed
3

4
5

DB = SqliteDatabase(str(DATA_DIR / "ollama.db"))
Timothy J. Baek's avatar
Timothy J. Baek committed
6
DB.connect()