This commit is contained in:
jyong
2025-06-03 18:12:24 +08:00
parent 573cd15e77
commit 7b7f8ef51d
4 changed files with 4 additions and 3 deletions

View File

@ -5,6 +5,7 @@ class RetrievalMethod(Enum):
SEMANTIC_SEARCH = "semantic_search"
FULL_TEXT_SEARCH = "full_text_search"
HYBRID_SEARCH = "hybrid_search"
KEYWORD_SEARCH = "keyword_search"
@staticmethod
def is_support_semantic_search(retrieval_method: str) -> bool: