mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2026-06-05 06:09:09 +08:00
7 lines
227 B
Python
7 lines
227 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
from .abstract import Executor
|
|
from .uniproc_executor import UniProcExecutor
|
|
|
|
__all__ = ["Executor", "UniProcExecutor"]
|