mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-03 21:02:38 +00:00
postgres
# What does this PR do? ## Test Plan
This commit is contained in:
parent
63a9f08c9e
commit
6151f336b9
32 changed files with 516 additions and 53 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue