File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1478,15 +1478,15 @@ class AsyncEngineArgs(EngineArgs):
1478
1478
@staticmethod
1479
1479
def add_cli_args (parser : FlexibleArgumentParser ,
1480
1480
async_args_only : bool = False ) -> FlexibleArgumentParser :
1481
+ # Initialize plugin to update the parser, for example, The plugin may
1482
+ # adding a new kind of quantization method to --quantization argument or
1483
+ # a new device to --device argument.
1484
+ load_general_plugins ()
1481
1485
if not async_args_only :
1482
1486
parser = EngineArgs .add_cli_args (parser )
1483
1487
parser .add_argument ('--disable-log-requests' ,
1484
1488
action = 'store_true' ,
1485
1489
help = 'Disable logging requests.' )
1486
- # Initialize plugin to update the parser, for example, The plugin may
1487
- # adding a new kind of quantization method to --quantization argument or
1488
- # a new device to --device argument.
1489
- load_general_plugins ()
1490
1490
from vllm .platforms import current_platform
1491
1491
current_platform .pre_register_and_update (parser )
1492
1492
return parser
You can’t perform that action at this time.
0 commit comments