From 01833aa997a33d1cf6989accda0d8a0ad318ce79 Mon Sep 17 00:00:00 2001 From: seehi <6580@pm.me> Date: Tue, 7 May 2024 15:43:20 +0800 Subject: [PATCH] update comment in rag_pipeline example --- examples/rag_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rag_pipeline.py b/examples/rag_pipeline.py index 75888e480..fbbc2cc39 100644 --- a/examples/rag_pipeline.py +++ b/examples/rag_pipeline.py @@ -42,7 +42,7 @@ def rag_key(self) -> str: class RAGExample: """Show how to use RAG.""" - def __init__(self, engine: SimpleEngine = None, use_llm_ranker: bool = False): + def __init__(self, engine: SimpleEngine = None, use_llm_ranker: bool = True): self._engine = engine self._use_llm_ranker = use_llm_ranker