mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-30 07:39:38 +00:00
comments
This commit is contained in:
parent
676b07e91e
commit
9eb692f25a
2 changed files with 7 additions and 4 deletions
|
@ -38,5 +38,8 @@ class StackConfigure(Subcommand):
|
|||
|
||||
def _run_stack_configure_cmd(self, args: argparse.Namespace) -> None:
|
||||
self.parser.error(
|
||||
"DEPRECATED: llama stack configure has been deprecated. Please use llama stack run --config <path/to/run.yaml> instead. You may find example run.yaml in ./llamas_stack/templates/"
|
||||
"""
|
||||
DEPRECATED! llama stack configure has been deprecated.
|
||||
Please use llama stack run --config <path/to/run.yaml> instead. You may find example run.yaml in ./llamas_stack/templates
|
||||
"""
|
||||
)
|
||||
|
|
|
@ -12,6 +12,6 @@ from pydantic import BaseModel, Field
|
|||
class PGVectorConfig(BaseModel):
|
||||
host: str = Field(default="localhost")
|
||||
port: int = Field(default=5432)
|
||||
db: str = Field(default="postgres_db")
|
||||
user: str = Field(default="postgres_user")
|
||||
password: str = Field(default="postgres_password")
|
||||
db: str = Field(default="postgres")
|
||||
user: str = Field(default="postgres")
|
||||
password: str = Field(default="mysecretpassword")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue