From 3ec602b47f3f6498cce4cafb2aabc43799ae2bdc Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 21 Aug 2023 01:15:23 +0900 Subject: [PATCH] Fix typo in indexing_pipeline.py (#318) pipline -> pipeline --- backend/danswer/datastores/indexing_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/danswer/datastores/indexing_pipeline.py b/backend/danswer/datastores/indexing_pipeline.py index b9f8ed9d3..ec5c63ff0 100644 --- a/backend/danswer/datastores/indexing_pipeline.py +++ b/backend/danswer/datastores/indexing_pipeline.py @@ -132,7 +132,7 @@ def build_indexing_pipeline( vector_index: VectorIndex | None = None, keyword_index: KeywordIndex | None = None, ) -> IndexingPipelineProtocol: - """Builds a pipline which takes in a list (batch) of docs and indexes them. + """Builds a pipeline which takes in a list (batch) of docs and indexes them. Default uses _ chunker, _ embedder, and qdrant for the datastore""" if chunker is None: