From a40f68cf94412f5918fa86ebc2fbd8b1cafc6f80 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 13 Jun 2024 16:35:14 +0900 Subject: [PATCH] chore: update qdrant_vector.py (#5128) --- api/core/rag/datasource/vdb/qdrant/qdrant_vector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/core/rag/datasource/vdb/qdrant/qdrant_vector.py b/api/core/rag/datasource/vdb/qdrant/qdrant_vector.py index 6a77c135ff..49c0e2c985 100644 --- a/api/core/rag/datasource/vdb/qdrant/qdrant_vector.py +++ b/api/core/rag/datasource/vdb/qdrant/qdrant_vector.py @@ -128,7 +128,7 @@ class QdrantVector(BaseVector): # create doc_id payload index self._client.create_payload_index(collection_name, Field.DOC_ID.value, field_schema=PayloadSchemaType.KEYWORD) - # creat full text index + # create full text index text_index_params = TextIndexParams( type=TextIndexType.TEXT, tokenizer=TokenizerType.MULTILINGUAL,