From 25a774a520c20af95ca346cbc9d7a1deb8f53971 Mon Sep 17 00:00:00 2001 From: Augustin Chan Date: Sat, 27 Jan 2024 17:41:40 +0800 Subject: [PATCH] Update haystack/utils/getting_started.py Co-authored-by: Madeesh Kannan --- haystack/utils/getting_started.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/haystack/utils/getting_started.py b/haystack/utils/getting_started.py index 1697c4087e..b20c3dc539 100644 --- a/haystack/utils/getting_started.py +++ b/haystack/utils/getting_started.py @@ -7,7 +7,7 @@ logger = logging.getLogger(__name__) -def build_pipeline(provider, API_KEY, document_store, API_BASE): +def build_pipeline(provider, API_KEY, API_BASE, document_store): # Importing top-level causes a circular import from haystack.nodes import AnswerParser, PromptNode, PromptTemplate, BM25Retriever from haystack.pipelines import Pipeline