async_llm_engine.py 284 Bytes
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
from vllm.v1.engine.async_llm import AsyncLLM
5

6
AsyncLLMEngine = AsyncLLM  # type: ignore
7
"""The `AsyncLLMEngine` class is an alias of [vllm.v1.engine.async_llm.AsyncLLM][]."""