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",
        )

name class-attribute instance-attribute

name = '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()

subparser_init

subparser_init(
    subparsers: _SubParsersAction,
) -> FlexibleArgumentParser
Source code in vllm/entrypoints/cli/collect_env.py
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_init

cmd_init() -> list[CLISubcommand]
Source code in vllm/entrypoints/cli/collect_env.py
def cmd_init() -> list[CLISubcommand]:
    return [CollectEnvSubcommand()]