why this dont work? transformations = [] transformations.append(TitleExtractor(nodes=5)) transformations.append(QuestionsAnsweredExtractor(questions=3)) transformations.append(Settings.embed_model) transformations.append(splitter) transformations.append(node_parser)
transformations = []
pipeline = IngestionPipeline( transformations=transformations, vector_store=vector_store, ) nodes = pipeline.run(documents=docs), it should first parse then split then do the titleextraction etc. it dont split the doc