Skip to content

vllm.entrypoints.cli.collect_env

CollectEnvSubcommand

Bases: CLISubcommand

The collect-env subcommand for the vLLM CLI.

Source code in vllm/entrypoints/cli/collect_env.py
class CollectEnvSubcommand(CLISubcommand):
    """The `collect-env` subcommand for the vLLM CLI."""

    name = "collect-env"

    @staticmethod
    def cmd(args: argparse.Namespace) -> None:
        """Collect information about the environment."""
        collect_env_main()

    def subparser_init(
        self, subparsers: argparse._SubParsersAction
    ) -> FlexibleArgumentParser:
        return subparsers.add_parser(
            "collect-env",
            help="Start collecting environment information.",
            description="Start collecting environment information.",
            usage="vllm collect-env",
        )

cmd staticmethod

cmd(args: Namespace) -> None

Collect information about the environment.

Source code in vllm/entrypoints/cli/collect_env.py
@staticmethod
def cmd(args: argparse.Namespace) -> None:
    """Collect information about the environment."""
    collect_env_main()