chore: fix typo in config descriptions (#5585)

This commit is contained in:
Bowen Liang
2024-06-25 21:19:56 +08:00
committed by GitHub
parent 45a3ea6fed
commit 87ee3e627f
8 changed files with 13 additions and 13 deletions

View File

@@ -14,12 +14,12 @@ class TencentVectorDBConfig(BaseModel):
)
TENCENT_VECTOR_DB_API_KEY: Optional[str] = Field(
description='Tencent Vector api key',
description='Tencent Vector API key',
default=None,
)
TENCENT_VECTOR_DB_TIMEOUT: PositiveInt = Field(
description='Tencent Vector timeout',
description='Tencent Vector timeout in seconds',
default=30,
)