test_vision.py 18.9 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
5
import json

6
7
import openai
import pytest
8
import os
9
import pytest_asyncio
pansicheng's avatar
pansicheng committed
10
from transformers import AutoProcessor
11

12
from vllm.multimodal.utils import encode_image_base64, fetch_image
13

14
from ...utils import RemoteOpenAIServer, models_path_prefix, urls_port
15

16
MODEL_NAME = os.path.join(models_path_prefix, "microsoft/Phi-3.5-vision-instruct")
17
MAXIMUM_IMAGES = 2
18

zhuwenwen's avatar
zhuwenwen committed
19
20


21
# Test different image extensions (JPG/PNG) and formats (gray/RGB/RGBA)
22
TEST_IMAGE_ASSETS = [
23
24
25
26
    # "2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg",  # "https://vllm-public-assets.s3.us-west-2.amazonaws.com/vision_model_images/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg"
    # "Grayscale_8bits_palette_sample_image.png",  # "https://vllm-public-assets.s3.us-west-2.amazonaws.com/vision_model_images/Grayscale_8bits_palette_sample_image.png",
    # "1280px-Venn_diagram_rgb.svg.png",  # "https://vllm-public-assets.s3.us-west-2.amazonaws.com/vision_model_images/1280px-Venn_diagram_rgb.svg.png",
    # "RGBA_comp.png",  # "https://vllm-public-assets.s3.us-west-2.amazonaws.com/vision_model_images/RGBA_comp.png",
27
28
    f"http://localhost:{urls_port}/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg",
    f"http://localhost:{urls_port}/Grayscale_8bits_palette_sample_image.png",
29
    f"http://localhost:{urls_port}/1280px-Venn_diagram_rgb.svg.png",
30
    f"http://localhost:{urls_port}/RGBA_comp.png",
31
32
]

33
34
35
36
37
38
39
40
41
42
43
EXPECTED_MM_BEAM_SEARCH_RES = [
    [
        "The image shows a wooden boardwalk leading through a",
        "The image shows a wooden boardwalk extending into a",
    ],
    [
        "The image shows two parrots perched on",
        "The image shows two birds perched on a cur",
    ],
    [
        "The image shows a Venn diagram with three over",
44
        "The image shows a colorful Venn diagram with",
45
46
47
    ],
    [
        "This image displays a gradient of colors ranging from",
48
        "This image displays a gradient of colors forming a spectrum",
49
50
51
    ],
]

52

53
@pytest.fixture(scope="module")
54
def server():
55
    args = [
56
        "--runner",
57
        "generate",
58
59
60
61
62
63
64
        "--max-model-len",
        "2048",
        "--max-num-seqs",
        "5",
        "--enforce-eager",
        "--trust-remote-code",
        "--limit-mm-per-prompt",
65
        json.dumps({"image": MAXIMUM_IMAGES}),
66
67
68
    ]

    with RemoteOpenAIServer(MODEL_NAME, args) as remote_server:
69
        yield remote_server
70
71


72
73
74
75
@pytest_asyncio.fixture
async def client(server):
    async with server.get_async_client() as async_client:
        yield async_client
76
77


78
@pytest.fixture(scope="session")
79
def base64_encoded_image(local_asset_server) -> dict[str, str]:
80
    return {
81
82
83
        image_asset: encode_image_base64(
            local_asset_server.get_image_asset(image_asset)
        )
84
        for image_asset in TEST_IMAGE_ASSETS
85
86
87
    }


88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
def dummy_messages_from_image_url(
    image_urls: str | list[str],
    content_text: str = "What's in this image?",
):
    if isinstance(image_urls, str):
        image_urls = [image_urls]

    return [
        {
            "role": "user",
            "content": [
                *(
                    {"type": "image_url", "image_url": {"url": image_url}}
                    for image_url in image_urls
                ),
                {"type": "text", "text": content_text},
            ],
        }
    ]


pansicheng's avatar
pansicheng committed
109
def get_hf_prompt_tokens(model_name, content, image_url):
110
111
112
    processor = AutoProcessor.from_pretrained(
        model_name, trust_remote_code=True, num_crops=4
    )
pansicheng's avatar
pansicheng committed
113
114

    placeholder = "<|image_1|>\n"
115
116
117
118
119
120
    messages = [
        {
            "role": "user",
            "content": f"{placeholder}{content}",
        }
    ]
121
    images = [fetch_image(image_url)]
pansicheng's avatar
pansicheng committed
122
123

    prompt = processor.tokenizer.apply_chat_template(
124
125
        messages, tokenize=False, add_generation_prompt=True
    )
pansicheng's avatar
pansicheng committed
126
127
128
129
130
    inputs = processor(prompt, images, return_tensors="pt")

    return inputs.input_ids.shape[1]


131
132
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
133
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
134
135
136
async def test_single_chat_session_image(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
pansicheng's avatar
pansicheng committed
137
    content_text = "What's in this image?"
138
    messages = dummy_messages_from_image_url(image_url, content_text)
139

pansicheng's avatar
pansicheng committed
140
    max_completion_tokens = 10
141
    # test single completion
142
143
144
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
pansicheng's avatar
pansicheng committed
145
        max_completion_tokens=max_completion_tokens,
146
        logprobs=True,
147
        temperature=0.0,
148
149
        top_logprobs=5,
    )
150
151
152
153
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
154
    hf_prompt_tokens = get_hf_prompt_tokens(model_name, content_text, image_url)
155
    assert chat_completion.usage == openai.types.CompletionUsage(
pansicheng's avatar
pansicheng committed
156
157
        completion_tokens=max_completion_tokens,
        prompt_tokens=hf_prompt_tokens,
158
159
        total_tokens=hf_prompt_tokens + max_completion_tokens,
    )
160
161
162
163
164
165
166
167
168
169
170
171

    message = choice.message
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 10
    assert message.role == "assistant"
    messages.append({"role": "assistant", "content": message.content})

    # test multi-turn dialogue
    messages.append({"role": "user", "content": "express your result in json"})
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
172
        max_completion_tokens=10,
173
174
175
176
177
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


178
179
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
180
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
181
182
183
async def test_error_on_invalid_image_url_type(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
184
    content_text = "What's in this image?"
185
186
187
188
189
190
191
192
193
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image_url", "image_url": image_url},
                {"type": "text", "text": content_text},
            ],
        }
    ]
194
195
196

    # image_url should be a dict {"url": "some url"}, not directly a string
    with pytest.raises(openai.BadRequestError):
197
198
199
200
201
202
        _ = await client.chat.completions.create(
            model=model_name,
            messages=messages,
            max_completion_tokens=10,
            temperature=0.0,
        )
203
204


205
206
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
207
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
208
209
210
async def test_single_chat_session_image_beamsearch(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
211
212
    content_text = "What's in this image?"
    messages = dummy_messages_from_image_url(image_url, content_text)
213
214
215
216
217

    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        n=2,
218
        max_completion_tokens=10,
219
220
        logprobs=True,
        top_logprobs=5,
221
222
        extra_body=dict(use_beam_search=True),
    )
223
    assert len(chat_completion.choices) == 2
224
225
226
227
    assert (
        chat_completion.choices[0].message.content
        != chat_completion.choices[1].message.content
    )
228
229


230
231
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
232
233
@pytest.mark.parametrize("raw_image_url", TEST_IMAGE_ASSETS)
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
234
async def test_single_chat_session_image_base64encoded(
235
236
237
238
239
240
    client: openai.AsyncOpenAI,
    model_name: str,
    raw_image_url: str,
    image_url: str,
    base64_encoded_image: dict[str, str],
):
pansicheng's avatar
pansicheng committed
241
    content_text = "What's in this image?"
242
243
244
245
    messages = dummy_messages_from_image_url(
        f"data:image/jpeg;base64,{base64_encoded_image[raw_image_url]}",
        content_text,
    )
246

pansicheng's avatar
pansicheng committed
247
    max_completion_tokens = 10
248
    # test single completion
249
250
251
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
pansicheng's avatar
pansicheng committed
252
        max_completion_tokens=max_completion_tokens,
253
        logprobs=True,
254
        temperature=0.0,
255
256
        top_logprobs=5,
    )
257
258
259
260
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
261
    hf_prompt_tokens = get_hf_prompt_tokens(model_name, content_text, image_url)
262
    assert chat_completion.usage == openai.types.CompletionUsage(
pansicheng's avatar
pansicheng committed
263
264
        completion_tokens=max_completion_tokens,
        prompt_tokens=hf_prompt_tokens,
265
266
        total_tokens=hf_prompt_tokens + max_completion_tokens,
    )
267
268
269
270
271
272
273
274
275
276
277
278

    message = choice.message
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 10
    assert message.role == "assistant"
    messages.append({"role": "assistant", "content": message.content})

    # test multi-turn dialogue
    messages.append({"role": "user", "content": "express your result in json"})
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
279
        max_completion_tokens=10,
280
        temperature=0.0,
281
282
283
284
285
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


286
287
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
288
@pytest.mark.parametrize("image_idx", list(range(len(TEST_IMAGE_ASSETS))))
289
async def test_single_chat_session_image_base64encoded_beamsearch(
290
291
292
293
294
    client: openai.AsyncOpenAI,
    model_name: str,
    image_idx: int,
    base64_encoded_image: dict[str, str],
):
295
    # NOTE: This test also validates that we pass MM data through beam search
296
    raw_image_url = TEST_IMAGE_ASSETS[image_idx]
297
    expected_res = EXPECTED_MM_BEAM_SEARCH_RES[image_idx]
298

299
300
301
302
    messages = dummy_messages_from_image_url(
        f"data:image/jpeg;base64,{base64_encoded_image[raw_image_url]}"
    )

303
304
305
306
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        n=2,
307
        max_completion_tokens=10,
308
        temperature=0.0,
309
310
        extra_body=dict(use_beam_search=True),
    )
311
    assert len(chat_completion.choices) == 2
312
313
    for actual, expected_str in zip(chat_completion.choices, expected_res):
        assert actual.message.content == expected_str
314
315


316
317
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
318
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
319
320
321
async def test_chat_streaming_image(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
322
    messages = dummy_messages_from_image_url(image_url)
323
324
325
326
327

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
328
        max_completion_tokens=10,
329
330
331
332
333
334
335
336
337
        temperature=0.0,
    )
    output = chat_completion.choices[0].message.content
    stop_reason = chat_completion.choices[0].finish_reason

    # test streaming
    stream = await client.chat.completions.create(
        model=model_name,
        messages=messages,
338
        max_completion_tokens=10,
339
340
341
        temperature=0.0,
        stream=True,
    )
342
    chunks: list[str] = []
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
    finish_reason_count = 0
    async for chunk in stream:
        delta = chunk.choices[0].delta
        if delta.role:
            assert delta.role == "assistant"
        if delta.content:
            chunks.append(delta.content)
        if chunk.choices[0].finish_reason is not None:
            finish_reason_count += 1
    # finish reason should only return in last block
    assert finish_reason_count == 1
    assert chunk.choices[0].finish_reason == stop_reason
    assert delta.content
    assert "".join(chunks) == output


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
361
362
@pytest.mark.parametrize(
    "image_urls",
363
    [TEST_IMAGE_ASSETS[:i] for i in range(2, len(TEST_IMAGE_ASSETS))],
364
365
366
367
368
    indirect=True,
)
async def test_multi_image_input(
    client: openai.AsyncOpenAI, model_name: str, image_urls: list[str]
):
369
    messages = dummy_messages_from_image_url(image_urls)
370

371
372
373
374
375
    if len(image_urls) > MAXIMUM_IMAGES:
        with pytest.raises(openai.BadRequestError):  # test multi-image input
            await client.chat.completions.create(
                model=model_name,
                messages=messages,
376
                max_completion_tokens=10,
377
378
379
380
381
382
383
384
385
386
387
388
389
390
                temperature=0.0,
            )

        # the server should still work afterwards
        completion = await client.completions.create(
            model=model_name,
            prompt=[0, 0, 0, 0, 0],
            max_tokens=5,
            temperature=0.0,
        )
        completion = completion.choices[0].text
        assert completion is not None and len(completion) >= 0
    else:
        chat_completion = await client.chat.completions.create(
391
392
            model=model_name,
            messages=messages,
393
            max_completion_tokens=10,
394
395
            temperature=0.0,
        )
396
397
        message = chat_completion.choices[0].message
        assert message.content is not None and len(message.content) >= 0
398
399
400
401
402
403
404


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize(
    "image_urls",
    [TEST_IMAGE_ASSETS[:i] for i in range(2, len(TEST_IMAGE_ASSETS))],
405
406
    indirect=True,
)
407
408
409
410
411
412
413
414
async def test_completions_with_image(
    client: openai.AsyncOpenAI,
    model_name: str,
    image_urls: list[str],
):
    for image_url in image_urls:
        chat_completion = await client.chat.completions.create(
            messages=[
415
                {"role": "system", "content": "You are a helpful assistant."},
416
                {
417
                    "role": "user",
418
419
420
421
422
423
424
425
426
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
                        {
                            "type": "image_url",
                            "image_url": {
                                "url": image_url,
427
                            },
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
                        },
                    ],
                },
            ],
            model=model_name,
        )
        assert chat_completion.choices[0].message.content is not None
        assert isinstance(chat_completion.choices[0].message.content, str)
        assert len(chat_completion.choices[0].message.content) > 0


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize(
    "image_urls",
    [TEST_IMAGE_ASSETS[:i] for i in range(2, len(TEST_IMAGE_ASSETS))],
444
445
    indirect=True,
)
446
447
448
449
450
451
452
453
async def test_completions_with_image_with_uuid(
    client: openai.AsyncOpenAI,
    model_name: str,
    image_urls: list[str],
):
    for image_url in image_urls:
        chat_completion = await client.chat.completions.create(
            messages=[
454
                {"role": "system", "content": "You are a helpful assistant."},
455
                {
456
                    "role": "user",
457
458
459
460
461
462
463
464
465
466
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
                        {
                            "type": "image_url",
                            "image_url": {
                                "url": image_url,
                            },
467
                            "uuid": image_url,
468
469
470
471
472
473
474
475
476
477
                        },
                    ],
                },
            ],
            model=model_name,
        )
        assert chat_completion.choices[0].message.content is not None
        assert isinstance(chat_completion.choices[0].message.content, str)
        assert len(chat_completion.choices[0].message.content) > 0

478
479
480
        # Second request, with empty image but the same uuid.
        chat_completion_with_empty_image = await client.chat.completions.create(
            messages=[
481
                {"role": "system", "content": "You are a helpful assistant."},
482
                {
483
                    "role": "user",
484
485
486
487
488
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
489
                        {"type": "image_url", "image_url": {}, "uuid": image_url},
490
491
492
493
494
                    ],
                },
            ],
            model=model_name,
        )
495
        assert chat_completion_with_empty_image.choices[0].message.content is not None
496
        assert isinstance(
497
498
499
            chat_completion_with_empty_image.choices[0].message.content, str
        )
        assert len(chat_completion_with_empty_image.choices[0].message.content) > 0
500
501
502
503
504
505
506
507
508
509
510


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
async def test_completions_with_empty_image_with_uuid_without_cache_hit(
    client: openai.AsyncOpenAI,
    model_name: str,
):
    with pytest.raises(openai.BadRequestError):
        _ = await client.chat.completions.create(
            messages=[
511
                {"role": "system", "content": "You are a helpful assistant."},
512
                {
513
                    "role": "user",
514
515
516
517
518
519
520
521
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
                        {
                            "type": "image_url",
                            "image_url": {},
522
                            "uuid": "uuid_not_previously_seen",
523
524
525
526
527
528
529
                        },
                    ],
                },
            ],
            model=model_name,
        )

530
531
532
533
534
535

@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize(
    "image_urls",
    [TEST_IMAGE_ASSETS[:i] for i in range(2, len(TEST_IMAGE_ASSETS))],
536
537
    indirect=True,
)
538
539
540
541
542
543
544
545
async def test_completions_with_image_with_incorrect_uuid_format(
    client: openai.AsyncOpenAI,
    model_name: str,
    image_urls: list[str],
):
    for image_url in image_urls:
        chat_completion = await client.chat.completions.create(
            messages=[
546
                {"role": "system", "content": "You are a helpful assistant."},
547
                {
548
                    "role": "user",
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
                        {
                            "type": "image_url",
                            "image_url": {
                                "url": image_url,
                                "incorrect_uuid_key": image_url,
                            },
                            "also_incorrect_uuid_key": image_url,
                        },
                    ],
                },
            ],
            model=model_name,
        )
        assert chat_completion.choices[0].message.content is not None
        assert isinstance(chat_completion.choices[0].message.content, str)
        assert len(chat_completion.choices[0].message.content) > 0