mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
705431aecc
Co-authored-by: Ankush Gola <ankush.gola@gmail.com>
19 lines
501 B
ReStructuredText
19 lines
501 B
ReStructuredText
Retrievers
|
|
==========================
|
|
|
|
.. note::
|
|
`Conceptual Guide <https://docs.langchain.com/docs/components/indexing/retriever>`_
|
|
|
|
|
|
The retriever interface is a generic interface that makes it easy to combine documents with
|
|
language models. This interface exposes a `get_relevant_documents` method which takes in a query
|
|
(a string) and returns a list of documents.
|
|
|
|
Please see below for a list of all the retrievers supported.
|
|
|
|
|
|
.. toctree::
|
|
:maxdepth: 1
|
|
:glob:
|
|
|
|
./retrievers/examples/* |