diff --git a/python/sglang/multimodal_gen/registry.py b/python/sglang/multimodal_gen/registry.py index 1391dcaf1f86..3c348a33316a 100644 --- a/python/sglang/multimodal_gen/registry.py +++ b/python/sglang/multimodal_gen/registry.py @@ -321,7 +321,8 @@ def _get_config_info( model_id = matched_model_names[0] return _CONFIG_REGISTRY.get(model_id) else: - raise RuntimeError(f"No model info found for model path: {model_path}") + logger.debug(f"No model info found for model path: {model_path}") + return None # --- Part 3: Main Resolver ---