From f35a78d0a5213e3392a28ccc192af51229c33102 Mon Sep 17 00:00:00 2001 From: Yingchun Lai Date: Thu, 12 Jun 2025 12:17:06 +0800 Subject: [PATCH] Fix the missing 'lof' choice of --schedule-policy server args --- python/sglang/srt/server_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sglang/srt/server_args.py b/python/sglang/srt/server_args.py index e475039d7380..0d6765bac575 100644 --- a/python/sglang/srt/server_args.py +++ b/python/sglang/srt/server_args.py @@ -836,7 +836,7 @@ def add_cli_args(parser: argparse.ArgumentParser): "--schedule-policy", type=str, default=ServerArgs.schedule_policy, - choices=["lpm", "random", "fcfs", "dfs-weight"], + choices=["lpm", "random", "fcfs", "dfs-weight", "lof"], help="The scheduling policy of the requests.", ) parser.add_argument(