vLLM’s Plugin System#
The community frequently requests the ability to extend vLLM with custom features. To facilitate this, vLLM includes a plugin system that allows users to add custom features without modifying the vLLM codebase. This document explains how plugins work in vLLM and how to create a plugin for vLLM.
How Plugins Work in vLLM#
Plugins are user-registered code that vLLM executes. Given vLLM’s architecture (see Architecture Overview), multiple processes may be involved, especially when using distributed inference with various parallelism techniques. To enable plugins successfully, every process created by vLLM needs to load the plugin. This is done by the load_general_plugins function in the vllm.plugins
module. This function is called for every process created by vLLM before it starts any work.
How vLLM Discovers Plugins#
vLLM’s plugin system uses the standard Python entry_points
mechanism. This mechanism allows developers to register functions in their Python packages for use by other packages. An example of a plugin:
# inside `setup.py` file
from setuptools import setup
setup(name='vllm_add_dummy_model',
version='0.1',
packages=['vllm_add_dummy_model'],
entry_points={
'vllm.general_plugins':
["register_dummy_model = vllm_add_dummy_model:register"]
})
# inside `vllm_add_dummy_model.py` file
def register():
from vllm import ModelRegistry
if "MyLlava" not in ModelRegistry.get_supported_archs():
ModelRegistry.register_model("MyLlava",
"vllm_add_dummy_model.my_llava:MyLlava")
For more information on adding entry points to your package, please check the official documentation.
Every plugin has three parts:
Plugin group: The name of the entry point group. vLLM uses the entry point group
vllm.general_plugins
to register general plugins. This is the key ofentry_points
in thesetup.py
file. Always usevllm.general_plugins
for vLLM’s general plugins.Plugin name: The name of the plugin. This is the value in the dictionary of the
entry_points
dictionary. In the example above, the plugin name isregister_dummy_model
. Plugins can be filtered by their names using theVLLM_PLUGINS
environment variable. To load only a specific plugin, setVLLM_PLUGINS
to the plugin name.Plugin value: The fully qualified name of the function to register in the plugin system. In the example above, the plugin value is
vllm_add_dummy_model:register
, which refers to a function namedregister
in thevllm_add_dummy_model
module.
What Can Plugins Do?#
Currently, the primary use case for plugins is to register custom, out-of-the-tree models into vLLM. This is done by calling ModelRegistry.register_model
to register the model. In the future, the plugin system may be extended to support more features, such as swapping in custom implementations for certain classes in vLLM.
Guidelines for Writing Plugins#
Being re-entrant: The function specified in the entry point should be re-entrant, meaning it can be called multiple times without causing issues. This is necessary because the function might be called multiple times in some processes.
Compatibility Guarantee#
vLLM guarantees the interface of documented plugins, such as ModelRegistry.register_model
, will always be available for plugins to register models. However, it is the responsibility of plugin developers to ensure their plugins are compatible with the version of vLLM they are targeting. For example, "vllm_add_dummy_model.my_llava:MyLlava"
should be compatible with the version of vLLM that the plugin targets. The interface for the model may change during vLLM’s development.