[Docs] Add bart-plugin to docs (#33905)

Signed-off-by: NickLucche <nlucches@redhat.com>
This commit is contained in:
Nicolò Lucchesi
2026-02-05 13:20:25 +01:00
committed by GitHub
parent 1c3a221d3b
commit 81a90e5277
3 changed files with 17 additions and 4 deletions

View File

@@ -134,9 +134,12 @@ Please note that prefix caching is not yet supported for any of the above models
#### Encoder-Decoder Models
Whisper is supported. Other models requiring cross-attention between separate
encoder and decoder (e.g., `BartForConditionalGeneration`,
`MllamaForConditionalGeneration`) are no longer supported.
Whisper is supported natively. Other encoder-decoder models are supported via the plugin system:
- **BART**: `BartForConditionalGeneration` is supported via the official [bart-plugin](https://github.com/vllm-project/bart-plugin).
For other encoder-decoder models (e.g., `MllamaForConditionalGeneration`), we recommend
following a similar pattern by implementing support through the [plugin system](../design/plugin_system.md).
### Features