@@ -567,6 +567,7 @@ class StrategyStepType(Enum):
567567 GRAPHRAG_SEARCH = "GRAPHRAG_SEARCH"
568568 TEMPLATED = "TEMPLATED"
569569 RERANKER = "RERANKER"
570+ FULL_TEXT_SEARCH = "FULL_TEXT_SEARCH"
570571
571572 def get_description (self ):
572573 return STEP_DESCRIPTIONS .get (self , "No description available" )
@@ -596,6 +597,7 @@ def get_progress_text(self):
596597 StrategyStepType .GRAPHRAG_SEARCH : "Query GraphRAG index" ,
597598 StrategyStepType .TEMPLATED : "Templated step" ,
598599 StrategyStepType .RERANKER : "Reranker" ,
600+ StrategyStepType .FULL_TEXT_SEARCH : "Full text search" ,
599601}
600602
601603STEP_WHEN_TO_USE = {
@@ -615,6 +617,7 @@ def get_progress_text(self):
615617 StrategyStepType .GRAPHRAG_SEARCH : "When you want to query a knowledge graph" ,
616618 StrategyStepType .TEMPLATED : "When you want to reuse existing templates" ,
617619 StrategyStepType .RERANKER : "When you want to rerank results" ,
620+ StrategyStepType .FULL_TEXT_SEARCH : "When you want to perform a full text search" ,
618621}
619622
620623STEP_PROGRESS_TEXTS = {
@@ -635,6 +638,7 @@ def get_progress_text(self):
635638 StrategyStepType .GRAPHRAG_SEARCH : "Querying knowledge graph" ,
636639 StrategyStepType .TEMPLATED : "Running templated step" ,
637640 StrategyStepType .RERANKER : "Running reranker" ,
641+ StrategyStepType .FULL_TEXT_SEARCH : "Running full text search" ,
638642}
639643
640644STEP_ERRORS = {
0 commit comments