fix: type error in config (#5643)

This commit is contained in:
takatost
2024-06-26 21:01:16 +08:00
committed by GitHub
parent 8d9a459083
commit 0dfdb61ee9
5 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ class PGVectorConfig(BaseModel):
PGVECTOR_PORT: Optional[PositiveInt] = Field(
description='PGVector port',
default=None,
default=5433,
)
PGVECTOR_USER: Optional[str] = Field(