# What does this PR do?


## Test Plan
This commit is contained in:
Eric Huang 2025-05-29 12:57:01 -07:00
parent 63a9f08c9e
commit 6151f336b9
32 changed files with 516 additions and 53 deletions

View file

@ -65,7 +65,7 @@ class SqliteKVStoreConfig(CommonConfig):
class PostgresKVStoreConfig(CommonConfig):
type: Literal[KVStoreType.postgres.value] = KVStoreType.postgres.value
host: str = "localhost"
port: int = 5432
port: str = "5432"
db: str = "llamastack"
user: str
password: str | None = None