diff --git a/api/core/rag/datasource/vdb/qdrant/qdrant_vector.py b/api/core/rag/datasource/vdb/qdrant/qdrant_vector.py index 2d0bb90094..3e39978596 100644 --- a/api/core/rag/datasource/vdb/qdrant/qdrant_vector.py +++ b/api/core/rag/datasource/vdb/qdrant/qdrant_vector.py @@ -50,7 +50,8 @@ class QdrantConfig(BaseModel): return { 'url': self.endpoint, 'api_key': self.api_key, - 'timeout': self.timeout + 'timeout': self.timeout, + 'verify': self.endpoint.startswith('https') }