fix bug : TencentVectorDBConfig Add TENCENT_VECTOR_DB_DATABASE (#5879)

This commit is contained in:
quicksand
2024-07-02 21:31:14 +08:00
committed by GitHub
parent 66a62e6c13
commit 372dc7ac1a

View File

@@ -42,3 +42,8 @@ class TencentVectorDBConfig(BaseModel):
description='Tencent Vector replicas',
default=2,
)
TENCENT_VECTOR_DB_DATABASE: Optional[str] = Field(
description='Tencent Vector Database',
default=None,
)