소스 검색

fix bug : TencentVectorDBConfig Add TENCENT_VECTOR_DB_DATABASE (#5879)

quicksand 1 년 전
부모
커밋
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,
+    )