"vllm/vscode:/vscode.git/clone" did not exist on "3f3313981c0bb3e2366c56737b82f8a36aa3f91e"
llm_engine.py 296 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.llm_engine import LLMEngine as V1LLMEngine
5

6
LLMEngine = V1LLMEngine  # type: ignore
7
"""The `LLMEngine` class is an alias of [vllm.v1.engine.llm_engine.LLMEngine][]."""