index.md 825 Bytes
Newer Older
1
2
3
4
(new-model)=

# Adding a New Model

5
This section provides more information on how to integrate a [PyTorch](https://pytorch.org/) model into vLLM.
6

7
:::{toctree}
8
9
10
11
12
:caption: Contents
:maxdepth: 1

basic
registration
13
tests
14
multimodal
15
:::
16

17
:::{note}
18
19
20
The complexity of adding a new model depends heavily on the model's architecture.
The process is considerably straightforward if the model shares a similar architecture with an existing model in vLLM.
However, for models that include new operators (e.g., a new attention mechanism), the process can be a bit more complex.
21
:::
22

23
:::{tip}
24
25
26
If you are encountering issues while integrating your model into vLLM, feel free to open a [GitHub issue](https://github.com/vllm-project/vllm/issues)
or ask on our [developer slack](https://slack.vllm.ai).
We will be happy to help you out!
27
:::