mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-10-04 04:04:14 +00:00
Merge e408fd3421
into 9f6c658f2a
This commit is contained in:
commit
782b7f1352
11 changed files with 2052 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue