vllm/cacheflow/__init__.py

19 lines
492 B
Python
Raw Normal View History

2023-06-17 17:25:21 +08:00
from cacheflow.engine.arg_utils import EngineArgs
from cacheflow.engine.llm_engine import LLMEngine
from cacheflow.engine.ray_utils import initialize_cluster
from cacheflow.entrypoints.llm import LLM
2023-06-17 17:25:21 +08:00
from cacheflow.outputs import CompletionOutput, RequestOutput
2023-05-20 13:06:59 -07:00
from cacheflow.sampling_params import SamplingParams
__version__ = "0.1.0"
2023-05-20 13:06:59 -07:00
__all__ = [
"LLM",
2023-05-20 13:06:59 -07:00
"SamplingParams",
"RequestOutput",
"CompletionOutput",
"LLMEngine",
2023-06-17 17:25:21 +08:00
"EngineArgs",
2023-05-20 13:06:59 -07:00
"initialize_cluster",
]