File size: 1,146 Bytes
cfd3735
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
LLMs
==========================

.. note::
   `Conceptual Guide <https://docs.langchain.com/docs/components/models/language-model>`_


Large Language Models (LLMs) are a core component of LangChain.
LangChain is not a provider of LLMs, but rather provides a standard interface through which
you can interact with a variety of LLMs.

The following sections of documentation are provided:

- `Getting Started <./llms/getting_started.html>`_: An overview of all the functionality the LangChain LLM class provides.

- `How-To Guides <./llms/how_to_guides.html>`_: A collection of how-to guides. These highlight how to accomplish various objectives with our LLM class (streaming, async, etc).

- `Integrations <./llms/integrations.html>`_: A collection of examples on how to integrate different LLM providers with LangChain (OpenAI, Hugging Face, etc).

- `Reference <../../reference/modules/llms.html>`_: API reference documentation for all LLM classes.


.. toctree::
   :maxdepth: 1
   :name: LLMs
   :hidden:
   
   ./llms/getting_started.ipynb
   ./llms/how_to_guides.rst
   ./llms/integrations.rst
   Reference<../../reference/modules/llms.rst>