浏览代码

fix bug : TencentVectorDBConfig Add TENCENT_VECTOR_DB_DATABASE (#5879)

quicksand 9 月之前
父节点
当前提交
372dc7ac1a
共有 1 个文件被更改,包括 5 次插入0 次删除
  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,
+    )