feat(api): ensure StackRunConfig

StackRunConfig is part of our public API, ensure stability of this datatype using a pytest snapshot test.

If the pydantic model changes, it will fail.

Signed-off-by: Charlie Doern <cdoern@redhat.com>
This commit is contained in:
Charlie Doern 2025-09-24 16:21:42 -04:00
parent d266c59c2a
commit e408fd3421
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