# SPDX-License-Identifier: Apache-2.0 # SPDX-FileCopyrightText: Copyright contributors to the vLLM project # Keep this package init import-free. # # The `vllm` console script imports `vllm.entrypoints.cli.main`, which causes # Python to import this package before loading the `main` submodule. # Eagerly importing benchmark subcommands here makes every `vllm serve ...` # startup depend on optional benchmark-only modules. # # Benchmark subcommands are loaded on demand in # `vllm.entrypoints.cli.benchmark.main`.