test_vision.py 19.3 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 pytest_asyncio
pansicheng's avatar
pansicheng committed
9
from transformers import AutoProcessor
10

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

13
from ...utils import RemoteOpenAIServer
14

15
16
MODEL_NAME = "microsoft/Phi-3.5-vision-instruct"
MAXIMUM_IMAGES = 2
17

18
# Test different image extensions (JPG/PNG) and formats (gray/RGB/RGBA)
19
20
21
22
23
TEST_IMAGE_ASSETS = [
    "2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg",  # "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg"
    "Grayscale_8bits_palette_sample_image.png",  # "https://upload.wikimedia.org/wikipedia/commons/f/fa/Grayscale_8bits_palette_sample_image.png",
    "1280px-Venn_diagram_rgb.svg.png",  # "https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Venn_diagram_rgb.svg/1280px-Venn_diagram_rgb.svg.png",
    "RGBA_comp.png",  # "https://upload.wikimedia.org/wikipedia/commons/0/0b/RGBA_comp.png",
24
25
]

26
27
28
29
30
31
32
33
34
35
36
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",
37
        "This image shows a Venn diagram with three over",
38
39
40
    ],
    [
        "This image displays a gradient of colors ranging from",
41
        "This image displays a gradient of colors forming a spectrum",
42
43
44
    ],
]

45

46
@pytest.fixture(scope="module")
47
def server():
48
    args = [
49
        "--runner",
50
        "generate",
51
52
53
54
55
56
57
        "--max-model-len",
        "2048",
        "--max-num-seqs",
        "5",
        "--enforce-eager",
        "--trust-remote-code",
        "--limit-mm-per-prompt",
58
        json.dumps({"image": MAXIMUM_IMAGES}),
59
60
61
    ]

    with RemoteOpenAIServer(MODEL_NAME, args) as remote_server:
62
        yield remote_server
63
64


65
66
67
68
@pytest_asyncio.fixture
async def client(server):
    async with server.get_async_client() as async_client:
        yield async_client
69
70


71
@pytest.fixture(scope="session")
72
def base64_encoded_image(local_asset_server) -> dict[str, str]:
73
    return {
74
75
76
        image_asset: encode_image_base64(
            local_asset_server.get_image_asset(image_asset)
        )
77
        for image_asset in TEST_IMAGE_ASSETS
78
79
80
    }


pansicheng's avatar
pansicheng committed
81
def get_hf_prompt_tokens(model_name, content, image_url):
82
83
84
    processor = AutoProcessor.from_pretrained(
        model_name, trust_remote_code=True, num_crops=4
    )
pansicheng's avatar
pansicheng committed
85
86

    placeholder = "<|image_1|>\n"
87
88
89
90
91
92
    messages = [
        {
            "role": "user",
            "content": f"{placeholder}{content}",
        }
    ]
93
    images = [fetch_image(image_url)]
pansicheng's avatar
pansicheng committed
94
95

    prompt = processor.tokenizer.apply_chat_template(
96
97
        messages, tokenize=False, add_generation_prompt=True
    )
pansicheng's avatar
pansicheng committed
98
99
100
101
102
    inputs = processor(prompt, images, return_tensors="pt")

    return inputs.input_ids.shape[1]


103
104
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
105
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
106
107
108
async def test_single_chat_session_image(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
pansicheng's avatar
pansicheng committed
109
    content_text = "What's in this image?"
110
111
112
113
114
115
116
117
118
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image_url", "image_url": {"url": image_url}},
                {"type": "text", "text": content_text},
            ],
        }
    ]
119

pansicheng's avatar
pansicheng committed
120
    max_completion_tokens = 10
121
    # test single completion
122
123
124
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
pansicheng's avatar
pansicheng committed
125
        max_completion_tokens=max_completion_tokens,
126
        logprobs=True,
127
        temperature=0.0,
128
129
        top_logprobs=5,
    )
130
131
132
133
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
134
    hf_prompt_tokens = get_hf_prompt_tokens(model_name, content_text, image_url)
135
    assert chat_completion.usage == openai.types.CompletionUsage(
pansicheng's avatar
pansicheng committed
136
137
        completion_tokens=max_completion_tokens,
        prompt_tokens=hf_prompt_tokens,
138
139
        total_tokens=hf_prompt_tokens + max_completion_tokens,
    )
140
141
142
143
144
145
146
147
148
149
150
151

    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,
152
        max_completion_tokens=10,
153
154
155
156
157
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


158
159
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
160
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
161
162
163
async def test_error_on_invalid_image_url_type(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
164
    content_text = "What's in this image?"
165
166
167
168
169
170
171
172
173
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image_url", "image_url": image_url},
                {"type": "text", "text": content_text},
            ],
        }
    ]
174
175
176

    # image_url should be a dict {"url": "some url"}, not directly a string
    with pytest.raises(openai.BadRequestError):
177
178
179
180
181
182
        _ = await client.chat.completions.create(
            model=model_name,
            messages=messages,
            max_completion_tokens=10,
            temperature=0.0,
        )
183
184


185
186
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
187
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
188
189
190
191
192
193
194
195
196
197
198
199
async def test_single_chat_session_image_beamsearch(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image_url", "image_url": {"url": image_url}},
                {"type": "text", "text": "What's in this image?"},
            ],
        }
    ]
200
201
202
203
204

    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        n=2,
205
        max_completion_tokens=10,
206
207
        logprobs=True,
        top_logprobs=5,
208
209
        extra_body=dict(use_beam_search=True),
    )
210
    assert len(chat_completion.choices) == 2
211
212
213
214
    assert (
        chat_completion.choices[0].message.content
        != chat_completion.choices[1].message.content
    )
215
216


217
218
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
219
220
@pytest.mark.parametrize("raw_image_url", TEST_IMAGE_ASSETS)
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
221
async def test_single_chat_session_image_base64encoded(
222
223
224
225
226
227
    client: openai.AsyncOpenAI,
    model_name: str,
    raw_image_url: str,
    image_url: str,
    base64_encoded_image: dict[str, str],
):
pansicheng's avatar
pansicheng committed
228
    content_text = "What's in this image?"
229
230
231
232
233
234
235
236
237
238
239
240
241
242
    messages = [
        {
            "role": "user",
            "content": [
                {
                    "type": "image_url",
                    "image_url": {
                        "url": f"data:image/jpeg;base64,{base64_encoded_image[raw_image_url]}"
                    },
                },
                {"type": "text", "text": content_text},
            ],
        }
    ]
243

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

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

    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,
276
        max_completion_tokens=10,
277
        temperature=0.0,
278
279
280
281
282
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


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

296
297
298
299
300
301
302
303
304
305
306
307
308
309
    messages = [
        {
            "role": "user",
            "content": [
                {
                    "type": "image_url",
                    "image_url": {
                        "url": f"data:image/jpeg;base64,{base64_encoded_image[raw_image_url]}"
                    },
                },
                {"type": "text", "text": "What's in this image?"},
            ],
        }
    ]
310
311
312
313
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        n=2,
314
        max_completion_tokens=10,
315
        temperature=0.0,
316
317
        extra_body=dict(use_beam_search=True),
    )
318
    assert len(chat_completion.choices) == 2
319
320
    for actual, expected_str in zip(chat_completion.choices, expected_res):
        assert actual.message.content == expected_str
321
322


323
324
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
325
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
326
327
328
329
330
331
332
333
334
335
336
337
async def test_chat_streaming_image(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image_url", "image_url": {"url": image_url}},
                {"type": "text", "text": "What's in this image?"},
            ],
        }
    ]
338
339
340
341
342

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
343
        max_completion_tokens=10,
344
345
346
347
348
349
350
351
352
        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,
353
        max_completion_tokens=10,
354
355
356
        temperature=0.0,
        stream=True,
    )
357
    chunks: list[str] = []
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
    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])
376
377
@pytest.mark.parametrize(
    "image_urls",
378
    [TEST_IMAGE_ASSETS[:i] for i in range(2, len(TEST_IMAGE_ASSETS))],
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
    indirect=True,
)
async def test_multi_image_input(
    client: openai.AsyncOpenAI, model_name: str, image_urls: list[str]
):
    messages = [
        {
            "role": "user",
            "content": [
                *(
                    {"type": "image_url", "image_url": {"url": image_url}}
                    for image_url in image_urls
                ),
                {"type": "text", "text": "What's in this image?"},
            ],
        }
    ]
396

397
398
399
400
401
    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,
402
                max_completion_tokens=10,
403
404
405
406
407
408
409
410
411
412
413
414
415
416
                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(
417
418
            model=model_name,
            messages=messages,
419
            max_completion_tokens=10,
420
421
            temperature=0.0,
        )
422
423
        message = chat_completion.choices[0].message
        assert message.content is not None and len(message.content) >= 0
424
425
426
427
428
429
430


@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))],
431
432
    indirect=True,
)
433
434
435
436
437
438
439
440
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=[
441
                {"role": "system", "content": "You are a helpful assistant."},
442
                {
443
                    "role": "user",
444
445
446
447
448
449
450
451
452
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
                        {
                            "type": "image_url",
                            "image_url": {
                                "url": image_url,
453
                            },
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
                        },
                    ],
                },
            ],
            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))],
470
471
    indirect=True,
)
472
473
474
475
476
477
478
479
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=[
480
                {"role": "system", "content": "You are a helpful assistant."},
481
                {
482
                    "role": "user",
483
484
485
486
487
488
489
490
491
492
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
                        {
                            "type": "image_url",
                            "image_url": {
                                "url": image_url,
                            },
493
                            "uuid": image_url,
494
495
496
497
498
499
500
501
502
503
                        },
                    ],
                },
            ],
            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

504
505
506
        # Second request, with empty image but the same uuid.
        chat_completion_with_empty_image = await client.chat.completions.create(
            messages=[
507
                {"role": "system", "content": "You are a helpful assistant."},
508
                {
509
                    "role": "user",
510
511
512
513
514
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
515
                        {"type": "image_url", "image_url": {}, "uuid": image_url},
516
517
518
519
520
                    ],
                },
            ],
            model=model_name,
        )
521
        assert chat_completion_with_empty_image.choices[0].message.content is not None
522
        assert isinstance(
523
524
525
            chat_completion_with_empty_image.choices[0].message.content, str
        )
        assert len(chat_completion_with_empty_image.choices[0].message.content) > 0
526
527
528
529
530
531
532
533
534
535
536


@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=[
537
                {"role": "system", "content": "You are a helpful assistant."},
538
                {
539
                    "role": "user",
540
541
542
543
544
545
546
547
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
                        {
                            "type": "image_url",
                            "image_url": {},
548
                            "uuid": "uuid_not_previously_seen",
549
550
551
552
553
554
555
                        },
                    ],
                },
            ],
            model=model_name,
        )

556
557
558
559
560
561

@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))],
562
563
    indirect=True,
)
564
565
566
567
568
569
570
571
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=[
572
                {"role": "system", "content": "You are a helpful assistant."},
573
                {
574
                    "role": "user",
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
                    "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