File size: 501 Bytes
cfd3735
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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/*