any particular implementations you looking for? here's one for question answering over a vector database: https://
langchain.readthedocs.io/en/latest/modu
les/chains/combine_docs_examples/vector_db_qa.html
…
@langchain
-
LangChain Vector Database Question Answering Implementation
By
–
-
Question Answering on GitHub Repositories with LangChain
By
–
This is another great example of question answering over specific data (in this case a GitHub repo) Also we need to look into getting the `langchain` handle
-
Algovera AI explores blockchain integration opportunities
By
–
If you have any favorite chains… let @AlgoveraAI know!! Very excited for this
-
LangChain Improves Documentation for Existing AI Functionality
By
–
This functionality was already in LangChain (h/t @johnjnay for pushing to get it in in the first place) We've just improved documentation GREATLY around this capability, since it was a bit hidden s/o to people in the discord for making me realize we lacked documentation here
-
LangChain Recursive Character Text Splitting Example Notebook
By
–
Check out example notebook: https://
langchain.readthedocs.io/en/latest/modu
les/utils/combine_docs_examples/textsplitter.html#recursive-character-text-splitting
… Shout out to @krrish_dh and others in the discord for helping ideate + test! -

Customize Summarization and Question Answering with Custom Prompts
By
–
Customize summarization and question answering The default prompts used for summarization and Question/Answering may not be specific enough for your use case Luckily, you can easily customize them! Here's an example asking them to respond in Italian
-
LangChain Question Answering Examples and LLM Applications
By
–
Check out example notebooks: https://
langchain.readthedocs.io/en/latest/modu
les/chains/combine_docs_examples/question_answering.html
… Shout out to @johnjnay
, @BruceHammer
, and others in the discord for helping to ideate + test John's already started to use it in some more awesome work on llm-lobbyist: -

Recursive Text Splitter for Improved Chunk Processing
By
–
Recursive Text Splitter The previous text splitter only split on a single character This one recursively splits chunks on different types of characters, until all chunks are below the desired size
-
LangChain 0.0.59 Adds Map-Rerank Chain and Text Splitting
By
–
New LangChain version makes it easier than ever to combine LLMs with your own data Brand new map-rerank chain
Recursive Text Splitter
Customize summarization and question answering `pip install langchain==0.0.59` -

Map-Rerank Chain for Enhanced Question Answering Systems
By
–
Brand new map-rerank chain This chain can be used for question answering. It maps over documents, trying to both (a) answer a question, (b) assign a score to how good the answer is It then picks the answer with the highest score