|
1 | 1 | # SPDX-License-Identifier: Apache-2.0 |
2 | 2 | # SPDX-FileCopyrightText: Copyright contributors to the vLLM project |
3 | 3 |
|
4 | | -from .interfaces import (HasInnerState, SupportsLoRA, SupportsMultiModal, |
5 | | - SupportsPP, SupportsTranscription, SupportsV0Only, |
6 | | - has_inner_state, supports_lora, supports_multimodal, |
7 | | - supports_pp, supports_transcription, supports_v0_only) |
| 4 | +from .interfaces import (HasInnerState, SupportsLoRA, SupportsMRoPE, |
| 5 | + SupportsMultiModal, SupportsPP, SupportsTranscription, |
| 6 | + SupportsV0Only, has_inner_state, supports_lora, |
| 7 | + supports_multimodal, supports_pp, |
| 8 | + supports_transcription, supports_v0_only) |
8 | 9 | from .interfaces_base import (VllmModelForPooling, VllmModelForTextGeneration, |
9 | 10 | is_pooling_model, is_text_generation_model) |
10 | 11 | from .registry import ModelRegistry |
|
27 | 28 | "supports_transcription", |
28 | 29 | "SupportsV0Only", |
29 | 30 | "supports_v0_only", |
| 31 | + "SupportsMRoPE", |
30 | 32 | ] |
0 commit comments