__init__.py 658 Bytes
Newer Older
1
2
"""vLLM: a high-throughput and memory-efficient inference engine for LLMs"""

Woosuk Kwon's avatar
Woosuk Kwon committed
3
4
5
6
7
8
9
10
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.engine.ray_utils import initialize_cluster
from vllm.entrypoints.llm import LLM
from vllm.outputs import CompletionOutput, RequestOutput
from vllm.sampling_params import SamplingParams

Woosuk Kwon's avatar
Woosuk Kwon committed
11
__version__ = "0.2.4"
Woosuk Kwon's avatar
Woosuk Kwon committed
12
13
14
15
16
17
18
19
20
21
22
23

__all__ = [
    "LLM",
    "SamplingParams",
    "RequestOutput",
    "CompletionOutput",
    "LLMEngine",
    "EngineArgs",
    "AsyncLLMEngine",
    "AsyncEngineArgs",
    "initialize_cluster",
]