chat_utils.py 14.7 KB
Newer Older
1
import asyncio
2
import codecs
3
from abc import ABC, abstractmethod
4
from collections import defaultdict
5
from functools import lru_cache
6
from pathlib import Path
7
8
from typing import (Any, Awaitable, Dict, Generic, Iterable, List, Literal,
                    Mapping, Optional, Tuple, TypeVar, Union)
9

10
11
12
13
14
15
16
17
18
19
# yapf conflicts with isort for this block
# yapf: disable
from openai.types.chat import ChatCompletionContentPartImageParam
from openai.types.chat import (
    ChatCompletionContentPartParam as OpenAIChatCompletionContentPartParam)
from openai.types.chat import ChatCompletionContentPartTextParam
from openai.types.chat import (
    ChatCompletionMessageParam as OpenAIChatCompletionMessageParam)
# yapf: enable
# pydantic needs the TypedDict from typing_extensions
20
21
from pydantic import ConfigDict, TypeAdapter
from typing_extensions import Required, TypeAlias, TypedDict
22

23
from vllm.config import ModelConfig
24
25
from vllm.logger import init_logger
from vllm.multimodal import MultiModalDataDict
26
from vllm.multimodal.utils import (async_get_and_parse_audio,
27
28
                                   async_get_and_parse_image,
                                   get_and_parse_audio, get_and_parse_image)
29
from vllm.transformers_utils.tokenizer import AnyTokenizer
30
31
32
33

logger = init_logger(__name__)


34
35
36
37
38
39
40
41
42
43
44
45
46
47
class AudioURL(TypedDict, total=False):
    url: Required[str]
    """
    Either a URL of the audio or a data URL with base64 encoded audio data.
    """


class ChatCompletionContentPartAudioParam(TypedDict, total=False):
    audio_url: Required[AudioURL]

    type: Required[Literal["audio_url"]]
    """The type of the content part."""


48
49
50
51
52
53
54
class CustomChatCompletionContentPartParam(TypedDict, total=False):
    __pydantic_config__ = ConfigDict(extra="allow")  # type: ignore

    type: Required[str]
    """The type of the content part."""


55
56
57
ChatCompletionContentPartParam: TypeAlias = Union[
    OpenAIChatCompletionContentPartParam, ChatCompletionContentPartAudioParam,
    CustomChatCompletionContentPartParam, ]
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79


class CustomChatCompletionMessageParam(TypedDict, total=False):
    """Enables custom roles in the Chat Completion API."""
    role: Required[str]
    """The role of the message's author."""

    content: Union[str, List[ChatCompletionContentPartParam]]
    """The contents of the message."""

    name: str
    """An optional name for the participant.

    Provides the model information to differentiate between participants of the
    same role.
    """


ChatCompletionMessageParam = Union[OpenAIChatCompletionMessageParam,
                                   CustomChatCompletionMessageParam]


80
# TODO: Make fields ReadOnly once mypy supports it
81
82
83
84
85
class ConversationMessage(TypedDict):
    role: str
    content: str


86
87
88
89
90
ModalityStr = Literal["image", "audio"]
_T = TypeVar("_T")


class BaseMultiModalItemTracker(ABC, Generic[_T]):
91
92
93
94
95
96
97
    """
    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.
    """

    def __init__(self, model_config: ModelConfig, tokenizer: AnyTokenizer):
98
99
        super().__init__()

100
101
102
103
104
        self._model_config = model_config
        self._tokenizer = tokenizer
        self._allowed_items = (model_config.multimodal_config.limit_per_prompt
                               if model_config.multimodal_config else {})
        self._consumed_items = {k: 0 for k in self._allowed_items}
105
106

        self._items: List[_T] = []
107
108
109

    @staticmethod
    @lru_cache(maxsize=None)
110
    def _cached_token_str(tokenizer: AnyTokenizer, token_index: int) -> str:
111
112
        return tokenizer.decode(token_index)

113
114
    def _placeholder_str(self, modality: ModalityStr,
                         current_count: int) -> Optional[str]:
115
116
        # TODO: Let user specify how to insert image tokens into prompt
        # (similar to chat template)
117
118
119
        hf_config = self._model_config.hf_config
        model_type = hf_config.model_type

120
121
122
123
124
125
126
127
128
129
        if modality == "image":
            if model_type == "phi3_v":
                # Workaround since this token is not defined in the tokenizer
                return f"<|image_{current_count}|>"
            if model_type == "minicpmv":
                return "(<image>./</image>)"
            if model_type in ("blip-2", "chatglm", "fuyu", "paligemma"):
                # These models do not use image tokens in the prompt
                return None
            if model_type.startswith("llava"):
130
131
                return self._cached_token_str(self._tokenizer,
                                              hf_config.image_token_index)
132
133
134
135
136
137
138
139
140
141
142
143
            if model_type in ("chameleon", "internvl_chat"):
                return "<image>"

            raise TypeError(f"Unknown model type: {model_type}")
        elif modality == "audio":
            if model_type == "ultravox":
                return "<|reserved_special_token_0|>"
            raise TypeError(f"Unknown model type: {model_type}")
        else:
            raise TypeError(f"Unknown modality: {modality}")

    @staticmethod
144
    def _combine(items: List[MultiModalDataDict]) -> MultiModalDataDict:
145
146
147
        mm_lists: Mapping[str, List[object]] = defaultdict(list)

        # Merge all the multi-modal items
148
        for single_mm_data in items:
149
150
151
152
153
154
155
156
157
158
159
160
            for mm_key, mm_item in single_mm_data.items():
                if isinstance(mm_item, list):
                    mm_lists[mm_key].extend(mm_item)
                else:
                    mm_lists[mm_key].append(mm_item)

        # Unpack any single item lists for models that don't expect multiple.
        return {
            mm_key: mm_list[0] if len(mm_list) == 1 else mm_list
            for mm_key, mm_list in mm_lists.items()
        }

161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
    def add(self, modality: ModalityStr, item: _T) -> Optional[str]:
        """
        Add a multi-modal item to the current prompt and returns the
        placeholder string to use, if any.
        """
        allowed_count = self._allowed_items.get(modality, 1)
        current_count = self._consumed_items.get(modality, 0) + 1
        if current_count > allowed_count:
            raise ValueError(
                f"At most {allowed_count} {modality}(s) may be provided in "
                "one request.")

        self._consumed_items[modality] = current_count
        self._items.append(item)

        return self._placeholder_str(modality, current_count)

    @abstractmethod
    def create_parser(self) -> "BaseMultiModalContentParser":
        raise NotImplementedError


class MultiModalItemTracker(BaseMultiModalItemTracker[MultiModalDataDict]):

    def all_mm_data(self) -> Optional[MultiModalDataDict]:
        return self._combine(self._items) if self._items else None

    def create_parser(self) -> "BaseMultiModalContentParser":
        return MultiModalContentParser(self)


class AsyncMultiModalItemTracker(
        BaseMultiModalItemTracker[Awaitable[MultiModalDataDict]]):

    async def all_mm_data(self) -> Optional[MultiModalDataDict]:
        if self._items:
            items = await asyncio.gather(*self._items)
            return self._combine(items)

        return None

    def create_parser(self) -> "BaseMultiModalContentParser":
        return AsyncMultiModalContentParser(self)


class BaseMultiModalContentParser(ABC):

    def __init__(self) -> None:
        super().__init__()

        # multimodal placeholder_string : count
        self._placeholder_counts: Dict[str, int] = defaultdict(lambda: 0)

    def _add_placeholder(self, placeholder: Optional[str]):
        if placeholder:
            self._placeholder_counts[placeholder] += 1

    def mm_placeholder_counts(self) -> Dict[str, int]:
        return dict(self._placeholder_counts)

    @abstractmethod
    def parse_image(self, image_url: str) -> None:
        raise NotImplementedError

    @abstractmethod
    def parse_audio(self, audio_url: str) -> None:
        raise NotImplementedError


class MultiModalContentParser(BaseMultiModalContentParser):

    def __init__(self, tracker: MultiModalItemTracker) -> None:
        super().__init__()

        self._tracker = tracker

    def parse_image(self, image_url: str) -> None:
        image = get_and_parse_image(image_url)

        placeholder = self._tracker.add("image", image)
        self._add_placeholder(placeholder)

    def parse_audio(self, audio_url: str) -> None:
        audio = get_and_parse_audio(audio_url)

        placeholder = self._tracker.add("audio", audio)
        self._add_placeholder(placeholder)


class AsyncMultiModalContentParser(BaseMultiModalContentParser):

    def __init__(self, tracker: AsyncMultiModalItemTracker) -> None:
        super().__init__()

        self._tracker = tracker

    def parse_image(self, image_url: str) -> None:
        image_coro = async_get_and_parse_image(image_url)

        placeholder = self._tracker.add("image", image_coro)
        self._add_placeholder(placeholder)

    def parse_audio(self, audio_url: str) -> None:
        audio_coro = async_get_and_parse_audio(audio_url)

        placeholder = self._tracker.add("audio", audio_coro)
        self._add_placeholder(placeholder)
268
269


270
271
def load_chat_template(
        chat_template: Optional[Union[Path, str]]) -> Optional[str]:
272
273
274
275
276
277
    if chat_template is None:
        return None
    try:
        with open(chat_template, "r") as f:
            resolved_chat_template = f.read()
    except OSError as e:
278
279
280
        if isinstance(chat_template, Path):
            raise

281
282
283
284
285
286
        JINJA_CHARS = "{}\n"
        if not any(c in chat_template for c in JINJA_CHARS):
            msg = (f"The supplied chat template ({chat_template}) "
                   f"looks like a file path, but it failed to be "
                   f"opened. Reason: {e}")
            raise ValueError(msg) from e
287

288
289
290
        # If opening a file fails, set chat template to be args to
        # ensure we decode so our escape are interpreted correctly
        resolved_chat_template = codecs.decode(chat_template, "unicode_escape")
291

292
293
    logger.info("Using supplied chat template:\n%s", resolved_chat_template)
    return resolved_chat_template
294
295


296
# TODO: Let user specify how to insert multimodal tokens into prompt
297
# (similar to chat template)
298
def _get_full_multimodal_text_prompt(placeholder_counts: Dict[str, int],
299
                                     text_prompt: str) -> str:
300
    """Combine multimodal prompts for a multimodal language model."""
301

302
    # Look through the text prompt to check for missing placeholders
303
    missing_placeholders: List[str] = []
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
    for placeholder in placeholder_counts:

        # For any existing placeholder in the text prompt, we leave it as is
        placeholder_counts[placeholder] -= text_prompt.count(placeholder)

        if placeholder_counts[placeholder] < 0:
            raise ValueError(
                f"Found more '{placeholder}' placeholders in input prompt than "
                "actual multimodal data items.")

        missing_placeholders.extend([placeholder] *
                                    placeholder_counts[placeholder])

    # NOTE: For now we always add missing placeholders at the front of
    # the prompt. This may change to be customizable in the future.
    return "\n".join(missing_placeholders + [text_prompt])
320
321


322
323
324
325
326
_TextParser = TypeAdapter(ChatCompletionContentPartTextParam)
_ImageParser = TypeAdapter(ChatCompletionContentPartImageParam)
_AudioParser = TypeAdapter(ChatCompletionContentPartAudioParam)


327
328
329
def _parse_chat_message_content_parts(
    role: str,
    parts: Iterable[ChatCompletionContentPartParam],
330
    mm_tracker: BaseMultiModalItemTracker,
331
) -> List[ConversationMessage]:
332
    texts: List[str] = []
333

334
    mm_parser = mm_tracker.create_parser()
335
336
337
338

    for part in parts:
        part_type = part["type"]
        if part_type == "text":
339
            text = _TextParser.validate_python(part)["text"]
340
341
            texts.append(text)
        elif part_type == "image_url":
342
            image_url = _ImageParser.validate_python(part)["image_url"]
343
344
345
346
347
348

            if image_url.get("detail", "auto") != "auto":
                logger.warning(
                    "'image_url.detail' is currently not supported and "
                    "will be ignored.")

349
            mm_parser.parse_image(image_url["url"])
350
        elif part_type == "audio_url":
351
            audio_url = _AudioParser.validate_python(part)["audio_url"]
352
353

            mm_parser.parse_audio(audio_url["url"])
354
355
356
357
        else:
            raise NotImplementedError(f"Unknown part type: {part_type}")

    text_prompt = "\n".join(texts)
358
    mm_placeholder_counts = mm_parser.mm_placeholder_counts()
359
360
361
    if mm_placeholder_counts:
        text_prompt = _get_full_multimodal_text_prompt(mm_placeholder_counts,
                                                       text_prompt)
362

363
    return [ConversationMessage(role=role, content=text_prompt)]
364
365


366
def _parse_chat_message_content(
367
368
369
    message: ChatCompletionMessageParam,
    mm_tracker: BaseMultiModalItemTracker,
) -> List[ConversationMessage]:
370
371
372
373
    role = message["role"]
    content = message.get("content")

    if content is None:
374
        return []
375
    if isinstance(content, str):
376
        return [ConversationMessage(role=role, content=content)]
377

378
379
380
    return _parse_chat_message_content_parts(
        role,
        content,  # type: ignore
381
        mm_tracker,
382
    )
383
384
385
386
387


def parse_chat_messages(
    messages: List[ChatCompletionMessageParam],
    model_config: ModelConfig,
388
    tokenizer: AnyTokenizer,
389
) -> Tuple[List[ConversationMessage], Optional[MultiModalDataDict]]:
390
    conversation: List[ConversationMessage] = []
391
    mm_tracker = MultiModalItemTracker(model_config, tokenizer)
392
393

    for msg in messages:
394
        sub_messages = _parse_chat_message_content(msg, mm_tracker)
395

396
        conversation.extend(sub_messages)
397

398
    return conversation, mm_tracker.all_mm_data()
399
400


401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
def parse_chat_messages_futures(
    messages: List[ChatCompletionMessageParam],
    model_config: ModelConfig,
    tokenizer: AnyTokenizer,
) -> Tuple[List[ConversationMessage], Awaitable[Optional[MultiModalDataDict]]]:
    conversation: List[ConversationMessage] = []
    mm_tracker = AsyncMultiModalItemTracker(model_config, tokenizer)

    for msg in messages:
        sub_messages = _parse_chat_message_content(msg, mm_tracker)

        conversation.extend(sub_messages)

    return conversation, mm_tracker.all_mm_data()


417
418
419
420
421
422
423
def apply_chat_template(
    tokenizer: AnyTokenizer,
    conversation: List[ConversationMessage],
    chat_template: Optional[str],
    *,
    tokenize: bool = False,  # Different from HF's default
    **kwargs: Any,
424
) -> Union[str, List[int]]:
425
426
427
428
429
430
431
432
433
434
435
436
437
    if chat_template is None and tokenizer.chat_template is None:
        raise ValueError(
            "As of transformers v4.44, default chat template is no longer "
            "allowed, so you must provide a chat template if the tokenizer "
            "does not define one.")

    prompt = tokenizer.apply_chat_template(
        conversation=conversation,
        chat_template=chat_template,
        tokenize=tokenize,
        **kwargs,
    )
    return prompt