"tests/vscode:/vscode.git/clone" did not exist on "275e0d2a993b271cfaec9da87711868719d50d8c"
cli_args.py 14.3 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3
4
5
6
7
8
9
10
11
"""
This file contains the command line arguments for the vLLM's
OpenAI-compatible server. It is kept in a separate file for documentation
purposes.
"""

import argparse
import json
import ssl
12
from collections.abc import Sequence
13
from dataclasses import field
14
from typing import Any, Literal
15

16
import vllm.envs as envs
17
from vllm.config import config
18
from vllm.engine.arg_utils import AsyncEngineArgs, optional_type
19
20
21
22
23
24
25
26
from vllm.entrypoints.chat_utils import (
    ChatTemplateContentFormatOption,
    validate_chat_template,
)
from vllm.entrypoints.constants import (
    H11_MAX_HEADER_COUNT_DEFAULT,
    H11_MAX_INCOMPLETE_EVENT_SIZE_DEFAULT,
)
27
from vllm.entrypoints.openai.models.protocol import LoRAModulePath
28
from vllm.logger import init_logger
29
from vllm.tool_parsers import ToolParserManager
30
from vllm.utils.argparse_utils import FlexibleArgumentParser
31

32
33
logger = init_logger(__name__)

34
35

class LoRAParserAction(argparse.Action):
36
37
38
39
    def __call__(
        self,
        parser: argparse.ArgumentParser,
        namespace: argparse.Namespace,
40
41
        values: str | Sequence[str] | None,
        option_string: str | None = None,
42
43
44
45
46
47
    ):
        if values is None:
            values = []
        if isinstance(values, str):
            raise TypeError("Expected values to be a list")

48
        lora_list: list[LoRAModulePath] = []
49
        for item in values:
50
            if item in [None, ""]:  # Skip if item is None or empty string
51
                continue
52
53
            if "=" in item and "," not in item:  # Old format: name=path
                name, path = item.split("=")
54
55
56
57
58
59
60
                lora_list.append(LoRAModulePath(name, path))
            else:  # Assume JSON format
                try:
                    lora_dict = json.loads(item)
                    lora = LoRAModulePath(**lora_dict)
                    lora_list.append(lora)
                except json.JSONDecodeError:
61
                    parser.error(f"Invalid JSON format for --lora-modules: {item}")
62
63
64
65
                except TypeError as e:
                    parser.error(
                        f"Invalid fields for --lora-modules: {item} - {str(e)}"
                    )
66
67
68
        setattr(namespace, self.dest, lora_list)


69
70
71
@config
class FrontendArgs:
    """Arguments for the OpenAI-compatible frontend server."""
72

73
    host: str | None = None
74
75
76
    """Host name."""
    port: int = 8000
    """Port number."""
77
    uds: str | None = None
78
    """Unix domain socket path. If set, host and port arguments are ignored."""
79
    uvicorn_log_level: Literal[
80
        "critical", "error", "warning", "info", "debug", "trace"
81
    ] = "info"
82
83
84
    """Log level for uvicorn."""
    disable_uvicorn_access_log: bool = False
    """Disable uvicorn access log."""
85
86
87
88
89
90
    disable_access_log_for_endpoints: str | None = None
    """Comma-separated list of endpoint paths to exclude from uvicorn access
    logs. This is useful to reduce log noise from high-frequency endpoints
    like health checks. Example: "/health,/metrics,/ping".
    When set, access logs for requests to these paths will be suppressed
    while keeping logs for other endpoints."""
91
92
93
94
95
96
97
98
    allow_credentials: bool = False
    """Allow credentials."""
    allowed_origins: list[str] = field(default_factory=lambda: ["*"])
    """Allowed origins."""
    allowed_methods: list[str] = field(default_factory=lambda: ["*"])
    """Allowed methods."""
    allowed_headers: list[str] = field(default_factory=lambda: ["*"])
    """Allowed headers."""
99
    api_key: list[str] | None = None
100
101
    """If provided, the server will require one of these keys to be presented in
    the header."""
102
    lora_modules: list[LoRAModulePath] | None = None
103
    """LoRA modules configurations in either 'name=path' format or JSON format
104
105
    or JSON list format. Example (old format): `'name=path'` Example (new
    format): `{\"name\": \"name\", \"path\": \"lora_path\",
106
    \"base_model_name\": \"id\"}`"""
107
    chat_template: str | None = None
108
    """The file path to the chat template, or the template in single-line form
109
110
111
112
    for the specified model."""
    chat_template_content_format: ChatTemplateContentFormatOption = "auto"
    """The format to render message content within a chat template.

113
114
115
116
117
118
119
    * "string" will render the content as a string. Example: `"Hello World"`
    * "openai" will render the content as a list of dictionaries, similar to
      OpenAI schema. Example: `[{"type": "text", "text": "Hello world!"}]`"""
    trust_request_chat_template: bool = False
    """Whether to trust the chat template provided in the request. If False,
    the server will always use the chat template specified by `--chat-template`
    or the ones from tokenizer."""
120
121
122
123
124
125
    default_chat_template_kwargs: dict[str, Any] | None = None
    """Default keyword arguments to pass to the chat template renderer.
    These will be merged with request-level chat_template_kwargs,
    with request values taking precedence. Useful for setting default
    behavior for reasoning models. Example: '{"enable_thinking": false}'
    to disable thinking mode by default for Qwen3/DeepSeek models."""
126
127
    response_role: str = "assistant"
    """The role name to return if `request.add_generation_prompt=true`."""
128
    ssl_keyfile: str | None = None
129
    """The file path to the SSL key file."""
130
    ssl_certfile: str | None = None
131
    """The file path to the SSL cert file."""
132
    ssl_ca_certs: str | None = None
133
134
135
136
137
    """The CA certificates file."""
    enable_ssl_refresh: bool = False
    """Refresh SSL Context when SSL certificate files change"""
    ssl_cert_reqs: int = int(ssl.CERT_NONE)
    """Whether client certificate is required (see stdlib ssl module's)."""
138
139
140
    ssl_ciphers: str | None = None
    """SSL cipher suites for HTTPS (TLS 1.2 and below only).
    Example: 'ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-CHACHA20-POLY1305'"""
141
    root_path: str | None = None
142
143
    """FastAPI root_path when app is behind a path based routing proxy."""
    middleware: list[str] = field(default_factory=lambda: [])
144
145
146
147
    """Additional ASGI middleware to apply to the app. We accept multiple
    --middleware arguments. The value should be an import path. If a function
    is provided, vLLM will add it to the server using
    `@app.middleware('http')`. If a class is provided, vLLM will
148
149
    add it to the server using `app.add_middleware()`."""
    return_tokens_as_token_ids: bool = False
150
151
    """When `--max-logprobs` is specified, represents single tokens as
    strings of the form 'token_id:{token_id}' so that tokens that are not
152
153
    JSON-encodable can be identified."""
    disable_frontend_multiprocessing: bool = False
154
    """If specified, will run the OpenAI frontend server in the same process as
155
156
    the model serving engine."""
    enable_request_id_headers: bool = False
157
    """If specified, API server will add X-Request-Id header to responses."""
158
    enable_auto_tool_choice: bool = False
159
    """Enable auto tool choice for supported models. Use `--tool-call-parser`
160
    to specify which parser to use."""
161
162
163
    exclude_tools_when_tool_choice_none: bool = False
    """If specified, exclude tool definitions in prompts when
    tool_choice='none'."""
164
    tool_call_parser: str | None = None
165
166
167
    """Select the tool call parser depending on the model that you're using.
    This is used to parse the model-generated tool call into OpenAI API format.
    Required for `--enable-auto-tool-choice`. You can choose any option from
168
169
    the built-in parsers or register a plugin via `--tool-parser-plugin`."""
    tool_parser_plugin: str = ""
170
171
    """Special the tool parser plugin write to parse the model-generated tool
    into OpenAI API format, the name register in this plugin can be used in
172
    `--tool-call-parser`."""
173
    tool_server: str | None = None
174
175
176
    """Comma-separated list of host:port pairs (IPv4, IPv6, or hostname).
    Examples: 127.0.0.1:8000, [::1]:8000, localhost:1234. Or `demo` for demo
    purpose."""
177
    log_config_file: str | None = envs.VLLM_LOGGING_CONFIG_PATH
178
    """Path to logging config JSON file for both vllm and uvicorn"""
179
    max_log_len: int | None = None
180
    """Max number of prompt characters or prompt ID numbers being printed in
181
182
183
184
185
186
187
188
189
    log. The default of None means unlimited."""
    disable_fastapi_docs: bool = False
    """Disable FastAPI's OpenAPI schema, Swagger UI, and ReDoc endpoint."""
    enable_prompt_tokens_details: bool = False
    """If set to True, enable prompt_tokens_details in usage."""
    enable_server_load_tracking: bool = False
    """If set to True, enable tracking server_load_metrics in the app state."""
    enable_force_include_usage: bool = False
    """If set to True, including usage on every request."""
190
    enable_tokenizer_info_endpoint: bool = False
191
    """Enable the `/tokenizer_info` endpoint. May expose chat
192
    templates and other tokenizer configuration."""
193
    enable_log_outputs: bool = False
194
    """If set to True, log model outputs (generations).
195
    Requires --enable-log-requests."""
196
197
198
199
    enable_log_deltas: bool = True
    """If set to False, output deltas will not be logged. Relevant only if 
    --enable-log-outputs is set.
    """
200
201
202
203
204
205
    h11_max_incomplete_event_size: int = H11_MAX_INCOMPLETE_EVENT_SIZE_DEFAULT
    """Maximum size (bytes) of an incomplete HTTP event (header or body) for
    h11 parser. Helps mitigate header abuse. Default: 4194304 (4 MB)."""
    h11_max_header_count: int = H11_MAX_HEADER_COUNT_DEFAULT
    """Maximum number of HTTP headers allowed in a request for h11 parser.
    Helps mitigate header abuse. Default: 256."""
206
207
    log_error_stack: bool = envs.VLLM_SERVER_DEV_MODE
    """If set to True, log the stack trace of error responses"""
208
209
210
211
212
    tokens_only: bool = False
    """
    If set to True, only enable the Tokens In<>Out endpoint. 
    This is intended for use in a Disaggregated Everything setup.
    """
213
214
215
216
217
    enable_offline_docs: bool = False
    """
    Enable offline FastAPI documentation for air-gapped environments.
    Uses vendored static assets bundled with vLLM.
    """
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234

    @staticmethod
    def add_cli_args(parser: FlexibleArgumentParser) -> FlexibleArgumentParser:
        from vllm.engine.arg_utils import get_kwargs

        frontend_kwargs = get_kwargs(FrontendArgs)

        # Special case: allowed_origins, allowed_methods, allowed_headers all
        # need json.loads type
        # Should also remove nargs
        frontend_kwargs["allowed_origins"]["type"] = json.loads
        frontend_kwargs["allowed_methods"]["type"] = json.loads
        frontend_kwargs["allowed_headers"]["type"] = json.loads
        del frontend_kwargs["allowed_origins"]["nargs"]
        del frontend_kwargs["allowed_methods"]["nargs"]
        del frontend_kwargs["allowed_headers"]["nargs"]

235
236
237
        # Special case: default_chat_template_kwargs needs json.loads type
        frontend_kwargs["default_chat_template_kwargs"]["type"] = json.loads

238
239
240
241
242
        # Special case: LoRA modules need custom parser action and
        # optional_type(str)
        frontend_kwargs["lora_modules"]["type"] = optional_type(str)
        frontend_kwargs["lora_modules"]["action"] = LoRAParserAction

243
        # Special case: Middleware needs to append action
244
        frontend_kwargs["middleware"]["action"] = "append"
245
246
247
248
        frontend_kwargs["middleware"]["type"] = str
        if "nargs" in frontend_kwargs["middleware"]:
            del frontend_kwargs["middleware"]["nargs"]
        frontend_kwargs["middleware"]["default"] = []
249

250
251
252
253
254
        # Special case: disable_access_log_for_endpoints is a single
        # comma-separated string, not a list
        if "nargs" in frontend_kwargs["disable_access_log_for_endpoints"]:
            del frontend_kwargs["disable_access_log_for_endpoints"]["nargs"]

255
        # Special case: Tool call parser shows built-in options.
256
        valid_tool_parsers = list(ToolParserManager.list_registered())
257
258
        parsers_str = ",".join(valid_tool_parsers)
        frontend_kwargs["tool_call_parser"]["metavar"] = (
259
260
            f"{{{parsers_str}}} or name registered in --tool-parser-plugin"
        )
261
262
263
264
265
266
267
268
269
270
271
272

        frontend_group = parser.add_argument_group(
            title="Frontend",
            description=FrontendArgs.__doc__,
        )

        for key, value in frontend_kwargs.items():
            frontend_group.add_argument(f"--{key.replace('_', '-')}", **value)

        return parser


Ethan Xu's avatar
Ethan Xu committed
273
def make_arg_parser(parser: FlexibleArgumentParser) -> FlexibleArgumentParser:
274
    """Create the CLI argument parser used by the OpenAI API server.
275

276
277
278
279
    We rely on the helper methods of `FrontendArgs` and `AsyncEngineArgs` to
    register all arguments instead of manually enumerating them here. This
    avoids code duplication and keeps the argument definitions in one place.
    """
280
281
282
283
284
285
    parser.add_argument(
        "model_tag",
        type=str,
        nargs="?",
        help="The model tag to serve (optional if specified in config)",
    )
286
287
288
289
290
    parser.add_argument(
        "--headless",
        action="store_true",
        default=False,
        help="Run in headless mode. See multi-node data parallel "
291
292
293
294
295
296
        "documentation for more details.",
    )
    parser.add_argument(
        "--api-server-count",
        "-asc",
        type=int,
297
298
299
        default=None,
        help="How many API server processes to run. "
        "Defaults to data_parallel_size if not specified.",
300
    )
301
302
303
304
    parser.add_argument(
        "--config",
        help="Read CLI options from a config file. "
        "Must be a YAML with the following options: "
305
306
        "https://docs.vllm.ai/en/latest/configuration/serve_args.html",
    )
307
    parser = FrontendArgs.add_cli_args(parser)
308
    parser = AsyncEngineArgs.add_cli_args(parser)
309

310
    return parser
Ethan Xu's avatar
Ethan Xu committed
311
312


313
314
315
316
317
318
319
320
321
322
def validate_parsed_serve_args(args: argparse.Namespace):
    """Quick checks for model serve args that raise prior to loading."""
    if hasattr(args, "subparser") and args.subparser != "serve":
        return

    # Ensure that the chat template is valid; raises if it likely isn't
    validate_chat_template(args.chat_template)

    # Enable auto tool needs a tool call parser to be valid
    if args.enable_auto_tool_choice and not args.tool_call_parser:
323
        raise TypeError("Error: --enable-auto-tool-choice requires --tool-call-parser")
324
    if args.enable_log_outputs and not args.enable_log_requests:
325
        raise TypeError("Error: --enable-log-outputs requires --enable-log-requests")
326
327


Ethan Xu's avatar
Ethan Xu committed
328
329
def create_parser_for_docs() -> FlexibleArgumentParser:
    parser_for_docs = FlexibleArgumentParser(
330
331
        prog="-m vllm.entrypoints.openai.api_server"
    )
Ethan Xu's avatar
Ethan Xu committed
332
    return make_arg_parser(parser_for_docs)