You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can install vLLM using pip. It's recommended to use `conda <https://docs.conda.io/projects/conda/en/latest/user-guide/getting-started.html>`_ to create and manage Python environments.
22
+
23
+
.. code-block:: console
15
24
16
-
By default, vLLM downloads model from `HuggingFace <https://huggingface.co/>`_. If you would like to use models from `ModelScope <https://www.modelscope.cn>`_ in the following examples, please set the environment variable:
25
+
$ conda create -n myenv python=3.10 -y
26
+
$ conda activate myenv
27
+
$ pip install vllm
17
28
18
-
.. code-block:: shell
29
+
Please refer to the :ref:`installation documentation <installation>` for more details on installing vLLM.
19
30
20
-
export VLLM_USE_MODELSCOPE=True
31
+
.. _offline_batched_inference:
21
32
22
33
Offline Batched Inference
23
34
-------------------------
24
35
25
-
We first show an example of using vLLM for offline batched inference on a dataset. In other words, we use vLLM to generate texts for a list of input prompts.
36
+
With vLLM installed, you can start generating texts for list of input prompts (i.e. offline batch inferencing). The example script for this section can be found `here <https://github.com/vllm-project/vllm/blob/main/examples/offline_inference.py>`__.
37
+
38
+
The first line of this example imports the classes :class:`~vllm.LLM` and :class:`~vllm.SamplingParams`:
26
39
27
-
Import :class:`~vllm.LLM` and :class:`~vllm.SamplingParams` from vLLM.
28
-
The :class:`~vllm.LLM` class is the main class for running offline inference with vLLM engine.
29
-
The :class:`~vllm.SamplingParams` class specifies the parameters for the sampling process.
40
+
- :class:`~vllm.LLM` is the main class for running offline inference with vLLM engine.
41
+
- :class:`~vllm.SamplingParams` specifies the parameters for the sampling process.
30
42
31
43
.. code-block:: python
32
44
33
45
from vllm importLLM, SamplingParams
34
46
35
-
Define the list of input prompts and the sampling parameters for generation. The sampling temperature is set to 0.8 and the nucleus sampling probability is set to 0.95. For more information about the sampling parameters, refer to the `class definition <https://github.com/vllm-project/vllm/blob/main/vllm/sampling_params.py>`_.
47
+
The next section defines a list of input prompts and sampling parameters for text generation. The `sampling temperature <https://arxiv.org/html/2402.05201v1>`_ is set to ``0.8`` and the `nucleus sampling probability <https://en.wikipedia.org/wiki/Top-p_sampling>`_ is set to ``0.95``. You can find more information about the sampling parameters `here <https://docs.vllm.ai/en/stable/dev/sampling_params.html>`__.
36
48
37
49
.. code-block:: python
38
50
@@ -44,64 +56,64 @@ Define the list of input prompts and the sampling parameters for generation. The
Initialize vLLM's engine for offline inference with the :class:`~vllm.LLM` class and the `OPT-125M model <https://arxiv.org/abs/2205.01068>`_. The list of supported models can be found at :ref:`supported models<supported_models>`.
59
+
The :class:`~vllm.LLM` class initializes vLLM's engine and the `OPT-125M model <https://arxiv.org/abs/2205.01068>`_ for offline inference. The list of supported models can be found :ref:`here<supported_models>`.
48
60
49
61
.. code-block:: python
50
62
51
63
llm = LLM(model="facebook/opt-125m")
52
64
53
-
Call ``llm.generate`` to generate the outputs. It adds the input prompts to vLLM engine's waiting queue and executes the vLLM engine to generate the outputs with high throughput. The outputs are returned as a list of ``RequestOutput`` objects, which include all the output tokens.
65
+
.. note::
66
+
67
+
By default, vLLM downloads models from `HuggingFace <https://huggingface.co/>`_. If you would like to use models from `ModelScope <https://www.modelscope.cn>`_, set the environment variable ``VLLM_USE_MODELSCOPE`` before initializing the engine.
68
+
69
+
Now, the fun part! The outputs are generated using ``llm.generate``. It adds the input prompts to the vLLM engine's waiting queue and executes the vLLM engine to generate the outputs with high throughput. The outputs are returned as a list of ``RequestOutput`` objects, which include all of the output tokens.
The code example can also be found in `examples/offline_inference.py <https://github.com/vllm-project/vllm/blob/main/examples/offline_inference.py>`_.
80
+
.. _openai_compatible_server:
67
81
68
82
OpenAI-Compatible Server
69
83
------------------------
70
84
71
85
vLLM can be deployed as a server that implements the OpenAI API protocol. This allows vLLM to be used as a drop-in replacement for applications using OpenAI API.
72
-
By default, it starts the server at ``http://localhost:8000``. You can specify the address with ``--host`` and ``--port`` arguments. The server currently hosts one model at a time (OPT-125M in the command below) and implements `list models <https://platform.openai.com/docs/api-reference/models/list>`_, `create chat completion <https://platform.openai.com/docs/api-reference/chat/completions/create>`_, and `create completion <https://platform.openai.com/docs/api-reference/completions/create>`_ endpoints. We are actively adding support for more endpoints.
86
+
By default, it starts the server at ``http://localhost:8000``. You can specify the address with ``--host`` and ``--port`` arguments. The server currently hosts one model at a time and implements endpoints such as `list models <https://platform.openai.com/docs/api-reference/models/list>`_, `create chat completion <https://platform.openai.com/docs/api-reference/chat/completions/create>`_, and `create completion <https://platform.openai.com/docs/api-reference/completions/create>`_ endpoints.
73
87
74
-
Start the server:
88
+
Run the following command to start the vLLM server with the `Qwen2.5-1.5B-Instruct <https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct>`_ model:
75
89
76
90
.. code-block:: console
77
91
78
-
$ vllm serve facebook/opt-125m
92
+
$ vllm serve Qwen/Qwen2.5-1.5B-Instruct
79
93
80
-
By default, the server uses a predefined chat template stored in the tokenizer. You can override this template by using the ``--chat-template`` argument:
By default, the server uses a predefined chattemplate stored in the tokenizer. You can learn about overriding it `here <https://github.com/vllm-project/vllm/blob/main/docs/source/serving/openai_compatible_server.md#chat-template>`__.
85
97
86
-
This server can be queried in the same format as OpenAI API. For example, list the models:
98
+
This server can be queried in the same format as OpenAI API. For example, to list the models:
87
99
88
100
.. code-block:: console
89
101
90
102
$ curl http://localhost:8000/v1/models
91
103
92
104
You can pass in the argument ``--api-key`` or environment variable ``VLLM_API_KEY`` to enable the server to check for API key in the header.
93
105
94
-
Using OpenAI Completions API with vLLM
95
-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
106
+
OpenAI Completions API with vLLM
107
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
96
108
97
-
Query the model with input prompts:
109
+
Once your server is started, you can query the model with input prompts:
98
110
99
111
.. code-block:: console
100
112
101
113
$ curl http://localhost:8000/v1/completions \
102
114
$ -H "Content-Type: application/json" \
103
115
$ -d '{
104
-
$ "model": "facebook/opt-125m",
116
+
$ "model": "Qwen/Qwen2.5-1.5B-Instruct",
105
117
$ "prompt": "San Francisco is a",
106
118
$ "max_tokens": 7,
107
119
$ "temperature": 0
@@ -120,36 +132,32 @@ Since this server is compatible with OpenAI API, you can use it as a drop-in rep
For a more detailed client example, refer to `examples/openai_completion_client.py <https://github.com/vllm-project/vllm/blob/main/examples/openai_completion_client.py>`_.
128
-
129
-
Using OpenAI Chat API with vLLM
130
-
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
139
+
A more detailed client example can be found `here <https://github.com/vllm-project/vllm/blob/main/examples/openai_completion_client.py>`__.
131
140
132
-
The vLLM server is designed to support the OpenAI Chat API, allowing you to engage in dynamic conversations with the model. The chat interface is a more interactive way to communicate with the model, allowing back-and-forth exchanges that can be stored in the chat history. This is useful for tasks that require context or more detailed explanations.
141
+
OpenAI Chat API with vLLM
142
+
~~~~~~~~~~~~~~~~~~~~~~~~~~
133
143
134
-
Querying the model using OpenAI Chat API:
144
+
vLLM is designed to also support the OpenAI Chat API. The chat interface is a more dynamic, interactive way to communicate with the model, allowing back-and-forth exchanges that can be stored in the chat history. This is useful for tasks that require context or more detailed explanations.
135
145
136
-
You can use the `create chat completion <https://platform.openai.com/docs/api-reference/chat/completions/create>`_ endpoint to communicate with the model in a chat-like interface:
146
+
You can use the `create chat completion <https://platform.openai.com/docs/api-reference/chat/completions/create>`_ endpoint to interact with the model:
0 commit comments