langchain.chains.openai_functions.qa_with_structure
.create_qa_with_sources_chain¶
- langchain.chains.openai_functions.qa_with_structure.create_qa_with_sources_chain(llm: BaseLanguageModel, verbose: bool = False, **kwargs: Any) LLMChain [source]¶
Create a question answering chain that returns an answer with sources.
- Parameters
llm – Language model to use for the chain.
verbose – Whether to print the details of the chain
**kwargs – Keyword arguments to pass to create_qa_with_structure_chain.
- Returns
Chain (LLMChain) that can be used to answer questions with citations.