mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-20 05:55:01 +08:00
Co-authored-by: sanghol <sanghol@allenai.org> Co-authored-by: Roger Wang <136131678+ywang96@users.noreply.github.com> Co-authored-by: Roger Wang <ywang@roblox.com>
23 lines
756 B
Python
23 lines
756 B
Python
from .interfaces import (HasInnerState, SupportsLoRA, SupportsMultiModal,
|
|
SupportsPP, has_inner_state, supports_lora,
|
|
supports_multimodal, supports_pp)
|
|
from .interfaces_base import (VllmModelForEmbedding,
|
|
VllmModelForTextGeneration, is_embedding_model,
|
|
is_text_generation_model)
|
|
from .registry import ModelRegistry
|
|
|
|
__all__ = [
|
|
"ModelRegistry",
|
|
"VllmModelForEmbedding",
|
|
"is_embedding_model",
|
|
"VllmModelForTextGeneration",
|
|
"is_text_generation_model",
|
|
"HasInnerState",
|
|
"has_inner_state",
|
|
"SupportsLoRA",
|
|
"supports_lora",
|
|
"SupportsMultiModal",
|
|
"supports_multimodal",
|
|
"SupportsPP",
|
|
"supports_pp",
|
|
] |