Browse Source

fix bug : TencentVectorDBConfig Add TENCENT_VECTOR_DB_DATABASE (#5879)

quicksand 9 tháng trước cách đây
mục cha
commit
372dc7ac1a
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      api/configs/middleware/vdb/tencent_vector_config.py

+ 5 - 0
api/configs/middleware/vdb/tencent_vector_config.py

@@ -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,
+    )