mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-27 13:28:42 +08:00
23 lines
719 B
Python
23 lines
719 B
Python
from .interfaces import (HasInnerState, SupportsLoRA, SupportsMultiModal,
|
|
SupportsPP, has_inner_state, supports_lora,
|
|
supports_multimodal, supports_pp)
|
|
from .interfaces_base import (VllmModelForPooling, VllmModelForTextGeneration,
|
|
is_pooling_model, is_text_generation_model)
|
|
from .registry import ModelRegistry
|
|
|
|
__all__ = [
|
|
"ModelRegistry",
|
|
"VllmModelForPooling",
|
|
"is_pooling_model",
|
|
"VllmModelForTextGeneration",
|
|
"is_text_generation_model",
|
|
"HasInnerState",
|
|
"has_inner_state",
|
|
"SupportsLoRA",
|
|
"supports_lora",
|
|
"SupportsMultiModal",
|
|
"supports_multimodal",
|
|
"SupportsPP",
|
|
"supports_pp",
|
|
]
|