5 lines
70 B
Python
5 lines
70 B
Python
|
|
from peewee import *
|
||
|
|
|
||
|
|
DB = SqliteDatabase("./ollama.db")
|
||
|
|
DB.connect()
|