We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e2d685 commit 62785edCopy full SHA for 62785ed
vllm/entrypoints/chat_utils.py
@@ -530,8 +530,9 @@ def _parse_chat_message_content_part(
530
# if part_type is text/refusal/image_url/audio_url but
531
# content is empty, log a warning and skip
532
if part_type in VALID_MESSAGE_CONTENT_MM_PART_TYPES and not content:
533
- logger.warning("Skipping multimodal part (type: '%s')"
534
- "with empty / unparsable content.", part_type)
+ logger.warning(
+ "Skipping multimodal part (type: '%s')"
535
+ "with empty / unparsable content.", part_type)
536
return None
537
538
if part_type in ("text", "refusal"):
0 commit comments