mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 04:15:01 +08:00
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
"""vLLM: a high-throughput and memory-efficient inference engine for LLMs"""
|
|
|
|
from vllm.engine.arg_utils import AsyncEngineArgs, EngineArgs
|
|
from vllm.engine.async_llm_engine import AsyncLLMEngine
|
|
from vllm.engine.llm_engine import LLMEngine
|
|
from vllm.entrypoints.llm import LLM
|
|
from vllm.executor.ray_utils import initialize_ray_cluster
|
|
from vllm.inputs import PromptType, TextPrompt, TokensPrompt
|
|
from vllm.model_executor.models import ModelRegistry
|
|
from vllm.outputs import (ClassificationOutput, ClassificationRequestOutput,
|
|
CompletionOutput, EmbeddingOutput,
|
|
EmbeddingRequestOutput, PoolingOutput,
|
|
PoolingRequestOutput, RequestOutput, ScoringOutput,
|
|
ScoringRequestOutput)
|
|
from vllm.pooling_params import PoolingParams
|
|
from vllm.sampling_params import SamplingParams
|
|
|
|
from .version import __version__, __version_tuple__
|
|
|
|
__all__ = [
|
|
"__version__",
|
|
"__version_tuple__",
|
|
"LLM",
|
|
"ModelRegistry",
|
|
"PromptType",
|
|
"TextPrompt",
|
|
"TokensPrompt",
|
|
"SamplingParams",
|
|
"RequestOutput",
|
|
"CompletionOutput",
|
|
"PoolingOutput",
|
|
"PoolingRequestOutput",
|
|
"EmbeddingOutput",
|
|
"EmbeddingRequestOutput",
|
|
"ClassificationOutput",
|
|
"ClassificationRequestOutput",
|
|
"ScoringOutput",
|
|
"ScoringRequestOutput",
|
|
"LLMEngine",
|
|
"EngineArgs",
|
|
"AsyncLLMEngine",
|
|
"AsyncEngineArgs",
|
|
"initialize_ray_cluster",
|
|
"PoolingParams",
|
|
]
|