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"]
|