Data Augmented Generation ========================= The walkthroughs here are related to data augmented generation. They cover either how to work with the components of data augmented generation (documents, embeddings, and vectorstores), or are end-to-end examples for using these components. **Components** `Text Splitters `_: A walkthrough of how to split large documents up into smaller, more manageable pieces of text. `Embeddings & VectorStores `_: A walkthrough of the different embedding and vectorstore functionalies that LangChain supports. **Examples** `Question Answering `_: A walkthrough of how to use LangChain for question answering over specific documents. `Question Answering with Sources `_: A walkthrough of how to use LangChain for question answering (with sources) over specific documents. `Summarization `_: A walkthrough of how to use LangChain for summarization over specific documents. `Vector DB Question Answering `_: A walkthrough of how to use LangChain for question answering over a vector database. `Vector DB Question Answering with Sources `_: A walkthrough of how to use LangChain for question answering (with sources) over a vector database. .. toctree:: :maxdepth: 1 :glob: :hidden: data_augmented_generation/*