vllm.entrypoints.chat_utils ¶
ChatCompletionContentPartParam module-attribute ¶
ChatCompletionContentPartParam: TypeAlias = (
ChatCompletionContentPartParam
| ChatCompletionContentPartAudioParam
| ChatCompletionContentPartInputAudioParam
| ChatCompletionContentPartVideoParam
| ChatCompletionContentPartRefusalParam
| CustomChatCompletionContentPILImageParam
| CustomChatCompletionContentSimpleImageParam
| ChatCompletionContentPartImageEmbedsParam
| ChatCompletionContentPartAudioEmbedsParam
| CustomChatCompletionContentSimpleAudioParam
| CustomChatCompletionContentSimpleVideoParam
| str
| CustomThinkCompletionContentParam
)
ChatCompletionMessageParam module-attribute ¶
ChatCompletionMessageParam: TypeAlias = (
ChatCompletionMessageParam
| CustomChatCompletionMessageParam
| Message
)
ChatTemplateContentFormat module-attribute ¶
ChatTemplateContentFormat = Literal['string', 'openai']
ChatTemplateContentFormatOption module-attribute ¶
ChatTemplateContentFormatOption = Literal[
"auto", "string", "openai"
]
MM_PARSER_MAP module-attribute ¶
MM_PARSER_MAP: dict[
str,
Callable[
[ChatCompletionContentPartParam], _ContentPart
],
] = {
"text": lambda part: get("text", None),
"thinking": lambda part: get("thinking", None),
"input_text": lambda part: get("text", None),
"output_text": lambda part: get("text", None),
"input_image": lambda part: get("image_url", None),
"image_url": lambda part: get("url", None),
"image_embeds": lambda part: get("image_embeds", None),
"audio_embeds": lambda part: get("audio_embeds", None),
"image_pil": lambda part: get("image_pil", None),
"audio_url": lambda part: get("url", None),
"input_audio": lambda part: get("input_audio", None),
"refusal": lambda part: get("refusal", None),
"video_url": lambda part: get("url", None),
}
MODALITY_PLACEHOLDERS_MAP module-attribute ¶
MODALITY_PLACEHOLDERS_MAP = {
"image": "<##IMAGE##>",
"audio": "<##AUDIO##>",
"video": "<##VIDEO##>",
}
ModalityStr module-attribute ¶
ModalityStr = Literal[
"image",
"audio",
"video",
"image_embeds",
"audio_embeds",
"vision_chunk",
]
PART_TYPES_TO_SKIP_NONE_CONTENT module-attribute ¶
_AssistantParser module-attribute ¶
_AudioEmbedsParser module-attribute ¶
_AudioEmbedsParser = partial(
cast, ChatCompletionContentPartAudioEmbedsParam
)
_ContentPart module-attribute ¶
_ImageEmbedsParser module-attribute ¶
_ImageEmbedsParser = partial(
cast, ChatCompletionContentPartImageEmbedsParam
)
_InputAudioParser module-attribute ¶
_PILImageParser module-attribute ¶
_PILImageParser = partial(
cast, CustomChatCompletionContentPILImageParam
)
_RefusalParser module-attribute ¶
_cached_load_chat_template module-attribute ¶
_cached_load_chat_template = lru_cache(_load_chat_template)
AsyncMultiModalContentParser ¶
Bases: BaseMultiModalContentParser
Source code in vllm/entrypoints/chat_utils.py
868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 | |
_connector instance-attribute ¶
_connector: MediaConnector = load(
VLLM_MEDIA_CONNECTOR,
media_io_kwargs=media_io_kwargs,
allowed_local_media_path=allowed_local_media_path,
allowed_media_domains=allowed_media_domains,
)
__init__ ¶
__init__(tracker: AsyncMultiModalItemTracker) -> None
Source code in vllm/entrypoints/chat_utils.py
_audio_with_uuid_async async ¶
_image_with_uuid_async async ¶
_video_with_uuid_async async ¶
parse_audio ¶
parse_audio_embeds ¶
Source code in vllm/entrypoints/chat_utils.py
parse_image ¶
parse_image_embeds ¶
Source code in vllm/entrypoints/chat_utils.py
parse_image_pil ¶
Source code in vllm/entrypoints/chat_utils.py
parse_input_audio ¶
parse_input_audio(
input_audio: InputAudio | None, uuid: str | None = None
) -> None
Source code in vllm/entrypoints/chat_utils.py
parse_video ¶
AsyncMultiModalItemTracker ¶
Bases: BaseMultiModalItemTracker[Awaitable[tuple[object, str | None]]]
Source code in vllm/entrypoints/chat_utils.py
create_parser ¶
create_parser() -> BaseMultiModalContentParser
resolve_items async ¶
resolve_items() -> tuple[
MultiModalDataDict | None, MultiModalUUIDDict | None
]
Source code in vllm/entrypoints/chat_utils.py
BaseMultiModalContentParser ¶
Bases: ABC
Source code in vllm/entrypoints/chat_utils.py
__init__ ¶
Source code in vllm/entrypoints/chat_utils.py
_add_placeholder ¶
_add_placeholder(
modality: ModalityStr, placeholder: str | None
)
mm_placeholder_storage ¶
parse_audio abstractmethod ¶
parse_audio_embeds abstractmethod ¶
parse_image abstractmethod ¶
parse_image_embeds abstractmethod ¶
parse_image_pil abstractmethod ¶
BaseMultiModalItemTracker ¶
Tracks multi-modal items in a given request and ensures that the number of multi-modal items in a given request does not exceed the configured maximum per prompt.
Source code in vllm/entrypoints/chat_utils.py
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 | |
use_unified_vision_chunk_modality cached property ¶
use_unified_vision_chunk_modality: bool
Check if model uses unified vision_chunk modality for images/videos.
add ¶
add(modality: ModalityStr, item: _T) -> str | None
Add a multi-modal item to the current prompt and returns the placeholder string to use, if any.
An optional uuid can be added which serves as a unique identifier of the media.
Source code in vllm/entrypoints/chat_utils.py
create_parser abstractmethod ¶
create_parser() -> BaseMultiModalContentParser
ChatCompletionContentPartAudioEmbedsParam ¶
Bases: TypedDict
Source code in vllm/entrypoints/chat_utils.py
audio_embeds instance-attribute ¶
The audio embeddings. It can be either: - A single base64 string representing a serialized torch tensor. - A dictionary where each value is a base64 string.
ChatCompletionContentPartAudioParam ¶
Bases: TypedDict
Source code in vllm/entrypoints/chat_utils.py
ChatCompletionContentPartImageEmbedsParam ¶
Bases: TypedDict
Source code in vllm/entrypoints/chat_utils.py
image_embeds instance-attribute ¶
The image embeddings. It can be either: - A single base64 string. - A dictionary where each value is a base64 string.
ChatCompletionContentPartVideoParam ¶
Bases: TypedDict
Source code in vllm/entrypoints/chat_utils.py
ChatTemplateResolutionError ¶
Bases: ValueError
Raised when chat template resolution fails.
This is a subclass of ValueError for backward compatibility with existing exception handlers.
ConversationMessage ¶
Bases: TypedDict
Source code in vllm/entrypoints/chat_utils.py
reasoning instance-attribute ¶
reasoning: str | None
The reasoning content for interleaved thinking.
reasoning_content instance-attribute ¶
reasoning_content: str | None
Deprecated: The reasoning content for interleaved thinking.
tool_call_id instance-attribute ¶
tool_call_id: str | None
Tool call that this message is responding to.
CustomChatCompletionContentPILImageParam ¶
Bases: TypedDict
A simpler version of the param that only accepts a PIL image.
Example: { "image_pil": ImageAsset('cherry_blossom').pil_image }
Source code in vllm/entrypoints/chat_utils.py
CustomChatCompletionContentSimpleAudioParam ¶
Bases: TypedDict
A simpler version of the param that only accepts a plain audio_url.
Example: { "audio_url": "https://example.com/audio.mp3" }
Source code in vllm/entrypoints/chat_utils.py
CustomChatCompletionContentSimpleImageParam ¶
Bases: TypedDict
A simpler version of the param that only accepts a plain image_url. This is supported by OpenAI API, although it is not documented.
Example: { "image_url": "https://example.com/image.jpg" }
Source code in vllm/entrypoints/chat_utils.py
CustomChatCompletionContentSimpleVideoParam ¶
Bases: TypedDict
A simpler version of the param that only accepts a plain audio_url.
Example: { "video_url": "https://example.com/video.mp4" }
Source code in vllm/entrypoints/chat_utils.py
CustomChatCompletionMessageParam ¶
Bases: TypedDict
Enables custom roles in the Chat Completion API.
Source code in vllm/entrypoints/chat_utils.py
content instance-attribute ¶
content: str | list[ChatCompletionContentPartParam]
The contents of the message.
name instance-attribute ¶
name: str
An optional name for the participant.
Provides the model information to differentiate between participants of the same role.
reasoning instance-attribute ¶
reasoning: str | None
The reasoning content for interleaved thinking.
tool_call_id instance-attribute ¶
tool_call_id: str | None
Tool call that this message is responding to.
CustomThinkCompletionContentParam ¶
Bases: TypedDict
A Think Completion Content Param that accepts a plain text and a boolean.
Example: { "thinking": "I am thinking about the answer", "closed": True, "type": "thinking" }
Source code in vllm/entrypoints/chat_utils.py
MultiModalContentParser ¶
Bases: BaseMultiModalContentParser
Source code in vllm/entrypoints/chat_utils.py
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 | |
_connector instance-attribute ¶
_connector: MediaConnector = load(
VLLM_MEDIA_CONNECTOR,
media_io_kwargs=media_io_kwargs,
allowed_local_media_path=allowed_local_media_path,
allowed_media_domains=allowed_media_domains,
)
__init__ ¶
__init__(tracker: MultiModalItemTracker) -> None
Source code in vllm/entrypoints/chat_utils.py
parse_audio ¶
Source code in vllm/entrypoints/chat_utils.py
parse_audio_embeds ¶
Source code in vllm/entrypoints/chat_utils.py
parse_image ¶
Source code in vllm/entrypoints/chat_utils.py
parse_image_embeds ¶
Source code in vllm/entrypoints/chat_utils.py
parse_image_pil ¶
parse_input_audio ¶
parse_input_audio(
input_audio: InputAudio | None, uuid: str | None = None
) -> None
Source code in vllm/entrypoints/chat_utils.py
parse_video ¶
Source code in vllm/entrypoints/chat_utils.py
MultiModalItemTracker ¶
Bases: BaseMultiModalItemTracker[tuple[object, str | None]]
Source code in vllm/entrypoints/chat_utils.py
create_parser ¶
create_parser() -> BaseMultiModalContentParser
resolve_items ¶
resolve_items() -> tuple[
MultiModalDataDict | None, MultiModalUUIDDict | None
]
Source code in vllm/entrypoints/chat_utils.py
PILImage ¶
Bases: BaseModel
A PIL.Image.Image object.
Source code in vllm/entrypoints/chat_utils.py
_BatchedSingleItemField dataclass ¶
__getattr__ ¶
__getattr__(name: str)
Source code in vllm/entrypoints/chat_utils.py
_detect_field ¶
_detect_field(
tensors: list[Tensor],
mm_processor: BaseMultiModalProcessor,
)
Source code in vllm/entrypoints/chat_utils.py
_get_embeds_data ¶
_get_embeds_data(
modality: str,
data_items: list[Any],
mm_processor: BaseMultiModalProcessor,
)
Source code in vllm/entrypoints/chat_utils.py
_get_full_multimodal_text_prompt ¶
_get_full_multimodal_text_prompt(
placeholder_storage: dict[str, list],
texts: list[str],
interleave_strings: bool,
) -> str
Combine multimodal prompts for a multimodal language model.
Source code in vllm/entrypoints/chat_utils.py
_get_interleaved_text_prompt ¶
Source code in vllm/entrypoints/chat_utils.py
_load_chat_template ¶
Source code in vllm/entrypoints/chat_utils.py
_merge_embeds ¶
_merge_embeds(
data_items: list[dict[str, Tensor]],
mm_processor: BaseMultiModalProcessor,
)
Source code in vllm/entrypoints/chat_utils.py
_parse_chat_message_content ¶
_parse_chat_message_content(
message: ChatCompletionMessageParam,
mm_tracker: BaseMultiModalItemTracker,
content_format: ChatTemplateContentFormat,
interleave_strings: bool,
) -> list[ConversationMessage]
Source code in vllm/entrypoints/chat_utils.py
_parse_chat_message_content_mm_part ¶
_parse_chat_message_content_mm_part(
part: ChatCompletionContentPartParam,
) -> tuple[str, _ContentPart]
Parses a given multi-modal content part based on its type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
part | ChatCompletionContentPartParam | A dict containing the content part, with a potential 'type' field. | required |
Returns:
| Type | Description |
|---|---|
str | A tuple (part_type, content) where: |
_ContentPart |
|
tuple[str, _ContentPart] |
|
Raises:
| Type | Description |
|---|---|
ValueError | If the 'type' field is missing and no direct URL is found. |
Source code in vllm/entrypoints/chat_utils.py
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 | |
_parse_chat_message_content_part ¶
_parse_chat_message_content_part(
part: ChatCompletionContentPartParam,
mm_parser: BaseMultiModalContentParser,
*,
wrap_dicts: bool,
interleave_strings: bool,
) -> _ContentPart | None
Parses a single part of a conversation. If wrap_dicts is True, structured dictionary pieces for texts and images will be wrapped in dictionaries, i.e., {"type": "text", "text", ...} and {"type": "image"}, respectively. Otherwise multimodal data will be handled by mm_parser, and texts will be returned as strings to be joined with multimodal placeholders.
Source code in vllm/entrypoints/chat_utils.py
1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 | |
_parse_chat_message_content_parts ¶
_parse_chat_message_content_parts(
role: str,
parts: Iterable[ChatCompletionContentPartParam],
mm_tracker: BaseMultiModalItemTracker,
*,
wrap_dicts: bool,
interleave_strings: bool,
) -> list[ConversationMessage]
Source code in vllm/entrypoints/chat_utils.py
_postprocess_messages ¶
_postprocess_messages(
messages: list[ConversationMessage],
) -> None
Source code in vllm/entrypoints/chat_utils.py
_resolve_items ¶
_resolve_items(
items_by_modality: dict[
str, list[tuple[object, str | None]]
],
mm_processor: BaseMultiModalProcessor,
modality_order: dict[str, list[str]],
) -> tuple[MultiModalDataDict, MultiModalUUIDDict]
Source code in vllm/entrypoints/chat_utils.py
_resolve_vision_chunk_items ¶
_resolve_vision_chunk_items(
vision_chunk_items: list[tuple[object, str | None]],
mm_processor: BaseMultiModalProcessor,
vision_chunks_modality_order: list[str],
)
Source code in vllm/entrypoints/chat_utils.py
get_history_tool_calls_cnt ¶
get_history_tool_calls_cnt(
conversation: list[ConversationMessage],
)
Source code in vllm/entrypoints/chat_utils.py
load_chat_template ¶
parse_chat_messages ¶
parse_chat_messages(
messages: list[ChatCompletionMessageParam],
model_config: ModelConfig,
content_format: ChatTemplateContentFormat,
) -> tuple[
list[ConversationMessage],
MultiModalDataDict | None,
MultiModalUUIDDict | None,
]
Source code in vllm/entrypoints/chat_utils.py
parse_chat_messages_async async ¶
parse_chat_messages_async(
messages: list[ChatCompletionMessageParam],
model_config: ModelConfig,
content_format: ChatTemplateContentFormat,
) -> tuple[
list[ConversationMessage],
MultiModalDataDict | None,
MultiModalUUIDDict | None,
]
Source code in vllm/entrypoints/chat_utils.py
validate_chat_template ¶
Raises if the provided chat template appears invalid.