This commit is contained in:
Charlie Doern 2025-10-03 13:35:21 -04:00 committed by GitHub
commit 782b7f1352
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 2052 additions and 1 deletions

View file

@ -54,6 +54,7 @@ class SqliteKVStoreConfig(CommonConfig):
db_path: str = Field(
default=(RUNTIME_BASE_DIR / "kvstore.db").as_posix(),
description="File path for the sqlite database",
json_schema_extra={"default": "~/.llama/runtime/kvstore.db"},
)
@classmethod

View file

@ -39,6 +39,7 @@ class SqliteSqlStoreConfig(SqlAlchemySqlStoreConfig):
db_path: str = Field(
default=(RUNTIME_BASE_DIR / "sqlstore.db").as_posix(),
description="Database path, e.g. ~/.llama/distributions/ollama/sqlstore.db",
json_schema_extra={"default": "~/.llama/runtime/sqlstore.db"},
)
@property