Open
Description
When building an ETL pipeline, transformers may need to perform multiple actions, which can result in layers of function calls that are hard to maintain. Is it possible to design them like advisor ?
The following actions include chunking, keyword, and summarization. If more transformations are required in the future, additional layers will need to be added.
vectorStore.write(splitter.split(loadTextAsDocuments( summaryDocuments(keywordDocuments(docs))));