Move server args config parser under utils (#36681)

This commit is contained in:
Lianmin Zheng
2026-08-27 03:34:50 -07:00
committed by GitHub
parent 536f570e66
commit 94183a8d2b
4 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -10829,7 +10829,7 @@ def prepare_server_args(argv: List[str]) -> ServerArgs:
# Check for config file and merge arguments if present
if "--config" in argv:
# Import here to avoid circular imports
from sglang.srt.server_args_config_parser import ConfigArgumentMerger
from sglang.srt.utils.server_args_config_parser import ConfigArgumentMerger
# Extract boolean actions from the parser to handle them correctly
config_merger = ConfigArgumentMerger(parser)