We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f37ceed commit e33ba0bCopy full SHA for e33ba0b
src/memos/reranker/http_bge_strategy.py
@@ -84,7 +84,7 @@ def __init__(
84
boost_weights: dict[str, float] | None = None,
85
boost_default: float = 0.0,
86
warn_unknown_filter_keys: bool = True,
87
- reranker_strategy: str = "singleturn_outputmem",
+ reranker_strategy: str = "single_turn",
88
**kwargs,
89
):
90
"""
src/memos/reranker/strategies/factory.py
@@ -18,7 +18,7 @@ class RerankerStrategyFactory:
18
backend_to_class: ClassVar[dict[str, Any]] = {
19
"single_turn": SingleTurnStrategy,
20
"concat_background": ConcatBackgroundStrategy,
21
- "singleturn_outputmem": SingleTurnOutMemStrategy,
+ "singleturn_outmem": SingleTurnOutMemStrategy,
22
}
23
24
@classmethod
0 commit comments