FEAT: support milvus to full text search (#11430)

Signed-off-by: YoungLH <974840768@qq.com>
This commit is contained in:
YoungLH
2025-01-08 17:39:53 +08:00
committed by GitHub
parent d649037c3e
commit 040a3b782c
8 changed files with 386 additions and 234 deletions

View File

@@ -6,6 +6,8 @@ class Field(Enum):
METADATA_KEY = "metadata"
GROUP_KEY = "group_id"
VECTOR = "vector"
# Sparse Vector aims to support full text search
SPARSE_VECTOR = "sparse_vector"
TEXT_KEY = "text"
PRIMARY_KEY = "id"
DOC_ID = "metadata.doc_id"