mirror of
https://github.com/hwchase17/langchain.git
synced 2026-02-21 14:43:07 +00:00
14 lines
427 B
Plaintext
14 lines
427 B
Plaintext
# Document QA
|
|
|
|
Here we walk through how to use LangChain for question answering over a list of documents. Under the hood we'll be using our [Document chains](/docs/modules/chains/document/).
|
|
|
|
import Example from "@snippets/modules/chains/additional/question_answering.mdx"
|
|
|
|
<Example/>
|
|
|
|
## Document QA with sources
|
|
|
|
import ExampleWithSources from "@snippets/modules/chains/additional/qa_with_sources.mdx"
|
|
|
|
<ExampleWithSources/>
|