Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/sglang/multimodal_gen/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---
Expand Down
Loading