diff --git a/python/sglang/srt/server_args.py b/python/sglang/srt/server_args.py index 787cbad0e..b8a5c8790 100644 --- a/python/sglang/srt/server_args.py +++ b/python/sglang/srt/server_args.py @@ -1362,10 +1362,7 @@ def auto_choose_speculative_params(self: ServerArgs): You can tune them on your own models and prompts with scripts/playground/bench_speculative.py """ - if self.decrypted_config_file: - config_path = self.decrypted_config_file - else: - config_path = os.path.join(self.model_path, "config.json") + config_path = os.path.join(self.model_path, "config.json") if not os.path.exists(config_path): raise ValueError(f"{config_path} is not found.")