Fix typo in indexing_pipeline.py (#318)

pipline -> pipeline
This commit is contained in:
Ikko Eltociear Ashimine 2023-08-21 01:15:23 +09:00 committed by GitHub
parent ab905e9fe6
commit 3ec602b47f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: