This commit is contained in:
Xi Yan 2024-11-05 17:16:26 -08:00
parent 676b07e91e
commit 9eb692f25a
2 changed files with 7 additions and 4 deletions

View file

@ -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")