test_vision.py 14.2 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)
zhuwenwen's avatar
zhuwenwen committed
22
23
24
25
26
27
# TEST_IMAGE_URLS = [
#     "https://upload.wikimedia.org/wikipedia/commons/thumb/d/dd/Gfp-wisconsin-madison-the-nature-boardwalk.jpg/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg",
#     "https://upload.wikimedia.org/wikipedia/commons/f/fa/Grayscale_8bits_palette_sample_image.png",
#     "https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Venn_diagram_rgb.svg/1280px-Venn_diagram_rgb.svg.png",
#     "https://upload.wikimedia.org/wikipedia/commons/0/0b/RGBA_comp.png",
# ]
28
TEST_IMAGE_URLS = [
29
30
31
32
    f"http://localhost:{urls_port}/2560px-Gfp-wisconsin-madison-the-nature-boardwalk.jpg",
    f"http://localhost:{urls_port}/Grayscale_8bits_palette_sample_image.png",
    f"http://localhost:{urls_port}/Venn_diagram_rgb.svg/1280px-Venn_diagram_rgb.svg.png",
    f"http://localhost:{urls_port}/RGBA_comp.png",
33
34
]

35
36
37
38
39
40
41
42
43
44
45
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",
46
        "The image shows a Venn diagram with three intersect",
47
48
49
    ],
    [
        "This image displays a gradient of colors ranging from",
50
        "The image displays a gradient of colors ranging from",
51
52
53
    ],
]

54

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

    with RemoteOpenAIServer(MODEL_NAME, args) as remote_server:
71
        yield remote_server
72
73


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


80
@pytest.fixture(scope="session")
81
def base64_encoded_image() -> dict[str, str]:
82
    return {
83
        image_url: encode_image_base64(fetch_image(image_url))
84
85
86
87
        for image_url in TEST_IMAGE_URLS
    }


pansicheng's avatar
pansicheng committed
88
89
90
91
92
93
94
95
96
97
def get_hf_prompt_tokens(model_name, content, image_url):
    processor = AutoProcessor.from_pretrained(model_name,
                                              trust_remote_code=True,
                                              num_crops=4)

    placeholder = "<|image_1|>\n"
    messages = [{
        "role": "user",
        "content": f"{placeholder}{content}",
    }]
98
    images = [fetch_image(image_url)]
pansicheng's avatar
pansicheng committed
99
100
101
102
103
104
105
106

    prompt = processor.tokenizer.apply_chat_template(
        messages, tokenize=False, add_generation_prompt=True)
    inputs = processor(prompt, images, return_tensors="pt")

    return inputs.input_ids.shape[1]


107
108
109
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("image_url", TEST_IMAGE_URLS)
110
async def test_single_chat_session_image(client: openai.AsyncOpenAI,
111
                                         model_name: str, image_url: str):
pansicheng's avatar
pansicheng committed
112
    content_text = "What's in this image?"
113
114
115
116
117
118
119
120
121
122
123
124
    messages = [{
        "role":
        "user",
        "content": [
            {
                "type": "image_url",
                "image_url": {
                    "url": image_url
                }
            },
            {
                "type": "text",
pansicheng's avatar
pansicheng committed
125
                "text": content_text
126
127
128
129
            },
        ],
    }]

pansicheng's avatar
pansicheng committed
130
    max_completion_tokens = 10
131
    # test single completion
132
133
134
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
pansicheng's avatar
pansicheng committed
135
        max_completion_tokens=max_completion_tokens,
136
        logprobs=True,
137
        temperature=0.0,
138
        top_logprobs=5)
139
140
141
142
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
pansicheng's avatar
pansicheng committed
143
144
    hf_prompt_tokens = get_hf_prompt_tokens(model_name, content_text,
                                            image_url)
145
    assert chat_completion.usage == openai.types.CompletionUsage(
pansicheng's avatar
pansicheng committed
146
147
148
        completion_tokens=max_completion_tokens,
        prompt_tokens=hf_prompt_tokens,
        total_tokens=hf_prompt_tokens + max_completion_tokens)
149
150
151
152
153
154
155
156
157
158
159
160

    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,
161
        max_completion_tokens=10,
162
163
164
165
166
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


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
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("image_url", TEST_IMAGE_URLS)
async def test_error_on_invalid_image_url_type(client: openai.AsyncOpenAI,
                                               model_name: str,
                                               image_url: str):
    content_text = "What's in this image?"
    messages = [{
        "role":
        "user",
        "content": [
            {
                "type": "image_url",
                "image_url": image_url
            },
            {
                "type": "text",
                "text": content_text
            },
        ],
    }]

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


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
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("image_url", TEST_IMAGE_URLS)
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?"
            },
        ],
    }]

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


233
234
235
236
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("image_url", TEST_IMAGE_URLS)
async def test_single_chat_session_image_base64encoded(
237
        client: openai.AsyncOpenAI, model_name: str, image_url: str,
238
        base64_encoded_image: dict[str, str]):
239

pansicheng's avatar
pansicheng committed
240
    content_text = "What's in this image?"
241
242
243
244
245
246
247
248
249
250
251
252
253
    messages = [{
        "role":
        "user",
        "content": [
            {
                "type": "image_url",
                "image_url": {
                    "url":
                    f"data:image/jpeg;base64,{base64_encoded_image[image_url]}"
                }
            },
            {
                "type": "text",
pansicheng's avatar
pansicheng committed
254
                "text": content_text
255
256
257
258
            },
        ],
    }]

pansicheng's avatar
pansicheng committed
259
    max_completion_tokens = 10
260
    # test single completion
261
262
263
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
pansicheng's avatar
pansicheng committed
264
        max_completion_tokens=max_completion_tokens,
265
        logprobs=True,
266
        temperature=0.0,
267
        top_logprobs=5)
268
269
270
271
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
pansicheng's avatar
pansicheng committed
272
273
    hf_prompt_tokens = get_hf_prompt_tokens(model_name, content_text,
                                            image_url)
274
    assert chat_completion.usage == openai.types.CompletionUsage(
pansicheng's avatar
pansicheng committed
275
276
277
        completion_tokens=max_completion_tokens,
        prompt_tokens=hf_prompt_tokens,
        total_tokens=hf_prompt_tokens + max_completion_tokens)
278
279
280
281
282
283
284
285
286
287
288
289

    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,
290
        max_completion_tokens=10,
291
        temperature=0.0,
292
293
294
295
296
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


297
298
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
299
@pytest.mark.parametrize("image_idx", list(range(len(TEST_IMAGE_URLS))))
300
async def test_single_chat_session_image_base64encoded_beamsearch(
301
        client: openai.AsyncOpenAI, model_name: str, image_idx: int,
302
        base64_encoded_image: dict[str, str]):
303
304
305
    # NOTE: This test also validates that we pass MM data through beam search
    image_url = TEST_IMAGE_URLS[image_idx]
    expected_res = EXPECTED_MM_BEAM_SEARCH_RES[image_idx]
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327

    messages = [{
        "role":
        "user",
        "content": [
            {
                "type": "image_url",
                "image_url": {
                    "url":
                    f"data:image/jpeg;base64,{base64_encoded_image[image_url]}"
                }
            },
            {
                "type": "text",
                "text": "What's in this image?"
            },
        ],
    }]
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        n=2,
328
        max_completion_tokens=10,
329
        temperature=0.0,
330
331
        extra_body=dict(use_beam_search=True))
    assert len(chat_completion.choices) == 2
332
333
    for actual, expected_str in zip(chat_completion.choices, expected_res):
        assert actual.message.content == expected_str
334
335


336
337
338
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("image_url", TEST_IMAGE_URLS)
339
async def test_chat_streaming_image(client: openai.AsyncOpenAI,
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
                                    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?"
            },
        ],
    }]

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

    messages = [{
        "role":
        "user",
        "content": [
405
            *({
406
407
408
409
                "type": "image_url",
                "image_url": {
                    "url": image_url
                }
410
            } for image_url in image_urls),
411
412
413
414
415
416
417
            {
                "type": "text",
                "text": "What's in this image?"
            },
        ],
    }]

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