File size: 1,242 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Models
==========================

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


This section of the documentation deals with different types of models that are used in LangChain.
On this page we will go over the model types at a high level,
but we have individual pages for each model type.
The pages contain more detailed "how-to" guides for working with that model,
as well as a list of different model providers.

**LLMs**

Large Language Models (LLMs) are the first type of models we cover.
These models take a text string as input, and return a text string as output.


**Chat Models**

Chat Models are the second type of models we cover.
These models are usually backed by a language model, but their APIs are more structured.
Specifically, these models take a list of Chat Messages as input, and return a Chat Message.

**Text Embedding Models**

The third type of models we cover are text embedding models.
These models take text as input and return a list of floats.

Getting Started
---------------

.. toctree::
   :maxdepth: 1

   ./models/getting_started.ipynb


Go Deeper
---------

.. toctree::
   :maxdepth: 1

   ./models/llms.rst
   ./models/chat.rst
   ./models/text_embedding.rst