test_vision.py 20.8 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.base import MediaWithBytes
13
from vllm.multimodal.utils import encode_image_url, fetch_image
14
from vllm.platforms import current_platform
15

16
from ...utils import RemoteOpenAIServer, models_path_prefix, urls_port
17

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

zhuwenwen's avatar
zhuwenwen committed
21
22


23
# Test different image extensions (JPG/PNG) and formats (gray/RGB/RGBA)
24
TEST_IMAGE_ASSETS = [
25
26
27
28
    # "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",
29
30
    f"http://localhost:{urls_port}/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg",
    f"http://localhost:{urls_port}/Grayscale_8bits_palette_sample_image.png",
31
    f"http://localhost:{urls_port}/1280px-Venn_diagram_rgb.svg.png",
32
    f"http://localhost:{urls_port}/RGBA_comp.png",
33
34
]

35
36
37
38
39
40
41
42
43
44
45
46
47
# Required terms for beam search validation
# Each entry is a list of term groups - ALL groups must match
# Each group is a list of alternatives - at least ONE term in the group must appear
# This provides semantic validation while allowing wording variation
REQUIRED_BEAM_SEARCH_TERMS = [
    # Boardwalk image: must have "boardwalk" AND ("wooden" or "wood")
    [["boardwalk"], ["wooden", "wood"]],
    # Parrots image: must have ("parrot" or "bird") AND "two"
    [["parrot", "bird"], ["two"]],
    # Venn diagram: must have "venn" AND "diagram"
    [["venn"], ["diagram"]],
    # Gradient image: must have "gradient" AND ("color" or "spectrum")
    [["gradient"], ["color", "spectrum"]],
48
49
]

50

51
52
53
54
55
56
57
58
59
60
61
def check_output_matches_terms(content: str, term_groups: list[list[str]]) -> bool:
    """
    Check if content matches all required term groups.
    Each term group requires at least one of its terms to be present.
    All term groups must be satisfied.
    """
    content_lower = content.lower()
    for group in term_groups:
        if not any(term.lower() in content_lower for term in group):
            return False
    return True
62

63

64
@pytest.fixture(scope="module")
65
def server():
66
    args = [
67
        "--runner",
68
        "generate",
69
70
71
72
73
74
75
        "--max-model-len",
        "2048",
        "--max-num-seqs",
        "5",
        "--enforce-eager",
        "--trust-remote-code",
        "--limit-mm-per-prompt",
76
        json.dumps({"image": MAXIMUM_IMAGES}),
77
78
    ]

79
80
81
82
83
84
85
86
87
88
    # ROCm: Increase timeouts to handle potential network delays and slower
    # video processing when downloading multiple videos from external sources
    env_overrides = {}
    if current_platform.is_rocm():
        env_overrides = {
            "VLLM_VIDEO_FETCH_TIMEOUT": "120",
            "VLLM_ENGINE_ITERATION_TIMEOUT_S": "300",
        }

    with RemoteOpenAIServer(MODEL_NAME, args, env_dict=env_overrides) as remote_server:
89
        yield remote_server
90
91


92
93
94
95
@pytest_asyncio.fixture
async def client(server):
    async with server.get_async_client() as async_client:
        yield async_client
96
97


98
@pytest.fixture(scope="session")
99
def url_encoded_image(local_asset_server) -> dict[str, str]:
100
    return {
101
        image_asset: encode_image_url(local_asset_server.get_image_asset(image_asset))
102
        for image_asset in TEST_IMAGE_ASSETS
103
104
105
    }


106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
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
127
def get_hf_prompt_tokens(model_name, content, image_url):
128
129
130
    processor = AutoProcessor.from_pretrained(
        model_name, trust_remote_code=True, num_crops=4
    )
pansicheng's avatar
pansicheng committed
131
132

    placeholder = "<|image_1|>\n"
133
134
135
136
137
138
    messages = [
        {
            "role": "user",
            "content": f"{placeholder}{content}",
        }
    ]
139
140
141
142
143
    image = fetch_image(image_url)
    # Unwrap MediaWithBytes if present
    if isinstance(image, MediaWithBytes):
        image = image.media
    images = [image]
pansicheng's avatar
pansicheng committed
144
145

    prompt = processor.tokenizer.apply_chat_template(
146
147
        messages, tokenize=False, add_generation_prompt=True
    )
pansicheng's avatar
pansicheng committed
148
149
150
151
152
    inputs = processor(prompt, images, return_tensors="pt")

    return inputs.input_ids.shape[1]


153
154
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
155
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
156
157
158
async def test_single_chat_session_image(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
pansicheng's avatar
pansicheng committed
159
    content_text = "What's in this image?"
160
    messages = dummy_messages_from_image_url(image_url, content_text)
161

pansicheng's avatar
pansicheng committed
162
    max_completion_tokens = 10
163
    # test single completion
164
165
166
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
pansicheng's avatar
pansicheng committed
167
        max_completion_tokens=max_completion_tokens,
168
        logprobs=True,
169
        temperature=0.0,
170
171
        top_logprobs=5,
    )
172
173
174
175
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
176
    hf_prompt_tokens = get_hf_prompt_tokens(model_name, content_text, image_url)
177
    assert chat_completion.usage == openai.types.CompletionUsage(
pansicheng's avatar
pansicheng committed
178
179
        completion_tokens=max_completion_tokens,
        prompt_tokens=hf_prompt_tokens,
180
181
        total_tokens=hf_prompt_tokens + max_completion_tokens,
    )
182
183
184
185
186
187
188
189
190
191
192
193

    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,
194
        max_completion_tokens=10,
195
196
197
198
199
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


200
201
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
202
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
203
204
205
async def test_error_on_invalid_image_url_type(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
206
    content_text = "What's in this image?"
207
208
209
210
211
212
213
214
215
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "image_url", "image_url": image_url},
                {"type": "text", "text": content_text},
            ],
        }
    ]
216
217
218

    # image_url should be a dict {"url": "some url"}, not directly a string
    with pytest.raises(openai.BadRequestError):
219
220
221
222
223
224
        _ = await client.chat.completions.create(
            model=model_name,
            messages=messages,
            max_completion_tokens=10,
            temperature=0.0,
        )
225
226


227
228
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
229
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
230
231
232
async def test_single_chat_session_image_beamsearch(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
233
234
    content_text = "What's in this image?"
    messages = dummy_messages_from_image_url(image_url, content_text)
235
236
237
238
239

    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        n=2,
240
        max_completion_tokens=10,
241
242
        logprobs=True,
        top_logprobs=5,
243
244
        extra_body=dict(use_beam_search=True),
    )
245
    assert len(chat_completion.choices) == 2
246
247
248
249
    assert (
        chat_completion.choices[0].message.content
        != chat_completion.choices[1].message.content
    )
250
251


252
253
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
254
255
@pytest.mark.parametrize("raw_image_url", TEST_IMAGE_ASSETS)
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
256
async def test_single_chat_session_image_base64encoded(
257
258
259
260
    client: openai.AsyncOpenAI,
    model_name: str,
    raw_image_url: str,
    image_url: str,
261
    url_encoded_image: dict[str, str],
262
):
pansicheng's avatar
pansicheng committed
263
    content_text = "What's in this image?"
264
    messages = dummy_messages_from_image_url(
265
        url_encoded_image[raw_image_url],
266
267
        content_text,
    )
268

pansicheng's avatar
pansicheng committed
269
    max_completion_tokens = 10
270
    # test single completion
271
272
273
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
pansicheng's avatar
pansicheng committed
274
        max_completion_tokens=max_completion_tokens,
275
        logprobs=True,
276
        temperature=0.0,
277
278
        top_logprobs=5,
    )
279
280
281
282
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
283
    hf_prompt_tokens = get_hf_prompt_tokens(model_name, content_text, image_url)
284
    assert chat_completion.usage == openai.types.CompletionUsage(
pansicheng's avatar
pansicheng committed
285
286
        completion_tokens=max_completion_tokens,
        prompt_tokens=hf_prompt_tokens,
287
288
        total_tokens=hf_prompt_tokens + max_completion_tokens,
    )
289
290
291
292
293
294
295
296
297
298
299
300

    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,
301
        max_completion_tokens=10,
302
        temperature=0.0,
303
304
305
306
307
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


308
309
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
310
@pytest.mark.parametrize("image_idx", list(range(len(TEST_IMAGE_ASSETS))))
311
async def test_single_chat_session_image_base64encoded_beamsearch(
312
313
314
    client: openai.AsyncOpenAI,
    model_name: str,
    image_idx: int,
315
    url_encoded_image: dict[str, str],
316
):
317
    # NOTE: This test validates that we pass MM data through beam search
318
    raw_image_url = TEST_IMAGE_ASSETS[image_idx]
319
    required_terms = REQUIRED_BEAM_SEARCH_TERMS[image_idx]
320

321
    messages = dummy_messages_from_image_url(url_encoded_image[raw_image_url])
322

323
324
325
326
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        n=2,
327
        max_completion_tokens=10,
328
        temperature=0.0,
329
330
        extra_body=dict(use_beam_search=True),
    )
331
    assert len(chat_completion.choices) == 2
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354

    # Verify beam search produces two different non-empty outputs
    content_0 = chat_completion.choices[0].message.content
    content_1 = chat_completion.choices[1].message.content

    # Emit beam search outputs for debugging
    print(
        f"Beam search outputs for image {image_idx} ({raw_image_url}): "
        f"Output 0: {content_0!r}, Output 1: {content_1!r}"
    )

    assert content_0, "First beam search output should not be empty"
    assert content_1, "Second beam search output should not be empty"
    assert content_0 != content_1, "Beam search should produce different outputs"

    # Verify each output contains the required terms for this image
    for i, content in enumerate([content_0, content_1]):
        if not check_output_matches_terms(content, required_terms):
            pytest.fail(
                f"Output {i} '{content}' doesn't contain required terms. "
                f"Expected all of these term groups (at least one from each): "
                f"{required_terms}"
            )
355
356


357
358
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
359
@pytest.mark.parametrize("image_url", TEST_IMAGE_ASSETS, indirect=True)
360
361
362
async def test_chat_streaming_image(
    client: openai.AsyncOpenAI, model_name: str, image_url: str
):
363
    messages = dummy_messages_from_image_url(image_url)
364
365
366
367
368

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
369
        max_completion_tokens=10,
370
371
372
373
374
375
376
377
378
        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,
379
        max_completion_tokens=10,
380
381
382
        temperature=0.0,
        stream=True,
    )
383
    chunks: list[str] = []
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
    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])
402
403
@pytest.mark.parametrize(
    "image_urls",
404
    [TEST_IMAGE_ASSETS[:i] for i in range(2, len(TEST_IMAGE_ASSETS))],
405
406
407
408
409
    indirect=True,
)
async def test_multi_image_input(
    client: openai.AsyncOpenAI, model_name: str, image_urls: list[str]
):
410
    messages = dummy_messages_from_image_url(image_urls)
411

412
413
414
415
416
    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,
417
                max_completion_tokens=10,
418
419
420
421
422
423
424
425
426
427
428
429
430
431
                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(
432
433
            model=model_name,
            messages=messages,
434
            max_completion_tokens=10,
435
436
            temperature=0.0,
        )
437
438
        message = chat_completion.choices[0].message
        assert message.content is not None and len(message.content) >= 0
439
440
441
442
443
444
445


@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))],
446
447
    indirect=True,
)
448
449
450
451
452
453
454
455
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=[
456
                {"role": "system", "content": "You are a helpful assistant."},
457
                {
458
                    "role": "user",
459
460
461
462
463
464
465
466
467
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
                        {
                            "type": "image_url",
                            "image_url": {
                                "url": image_url,
468
                            },
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
                        },
                    ],
                },
            ],
            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))],
485
486
    indirect=True,
)
487
488
489
490
491
492
493
494
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=[
495
                {"role": "system", "content": "You are a helpful assistant."},
496
                {
497
                    "role": "user",
498
499
500
501
502
503
504
505
506
507
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
                        {
                            "type": "image_url",
                            "image_url": {
                                "url": image_url,
                            },
508
                            "uuid": image_url,
509
510
511
512
513
514
515
516
517
518
                        },
                    ],
                },
            ],
            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

519
520
521
        # Second request, with empty image but the same uuid.
        chat_completion_with_empty_image = await client.chat.completions.create(
            messages=[
522
                {"role": "system", "content": "You are a helpful assistant."},
523
                {
524
                    "role": "user",
525
526
527
528
529
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
530
                        {"type": "image_url", "image_url": {}, "uuid": image_url},
531
532
533
534
535
                    ],
                },
            ],
            model=model_name,
        )
536
        assert chat_completion_with_empty_image.choices[0].message.content is not None
537
        assert isinstance(
538
539
540
            chat_completion_with_empty_image.choices[0].message.content, str
        )
        assert len(chat_completion_with_empty_image.choices[0].message.content) > 0
541
542
543
544
545
546
547
548
549
550
551


@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=[
552
                {"role": "system", "content": "You are a helpful assistant."},
553
                {
554
                    "role": "user",
555
556
557
558
559
560
561
562
                    "content": [
                        {
                            "type": "text",
                            "text": "Describe this image.",
                        },
                        {
                            "type": "image_url",
                            "image_url": {},
563
                            "uuid": "uuid_not_previously_seen",
564
565
566
567
568
569
570
                        },
                    ],
                },
            ],
            model=model_name,
        )

571
572
573
574
575
576

@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))],
577
578
    indirect=True,
)
579
580
581
582
583
584
585
586
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=[
587
                {"role": "system", "content": "You are a helpful assistant."},
588
                {
589
                    "role": "user",
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
                    "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