Update Haystack imports (#3599)

This commit is contained in:
Branden Chan 2022-11-21 10:15:57 +01:00 committed by GitHub
parent c7e3483f62
commit f85ead431a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -21,7 +21,7 @@ from haystack.nodes.file_converter import (
ParsrConverter,
)
from haystack.nodes.label_generator import PseudoLabelGenerator
from haystack.nodes.other import Docs2Answers, JoinDocuments, RouteDocuments, JoinAnswers
from haystack.nodes.other import Docs2Answers, JoinDocuments, RouteDocuments, JoinAnswers, DocumentMerger
from haystack.nodes.preprocessor import BasePreProcessor, PreProcessor
from haystack.nodes.query_classifier import SklearnQueryClassifier, TransformersQueryClassifier
from haystack.nodes.question_generator import QuestionGenerator

View File

@ -3,3 +3,4 @@ from haystack.nodes.other.join_docs import JoinDocuments
from haystack.nodes.other.route_documents import RouteDocuments
from haystack.nodes.other.join_answers import JoinAnswers
from haystack.nodes.other.join import JoinNode
from haystack.nodes.other.document_merger import DocumentMerger

View File

@ -12,4 +12,5 @@ from haystack.pipelines.standard_pipelines import (
GenerativeQAPipeline,
ExtractiveQAPipeline,
FAQPipeline,
TextIndexingPipeline,
)