test_vision.py 13.1 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
10
11
import requests
from PIL import Image
from transformers import AutoProcessor
12

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

15
from ...utils import RemoteOpenAIServer
16

17
18
MODEL_NAME = "microsoft/Phi-3.5-vision-instruct"
MAXIMUM_IMAGES = 2
19

20
21
22
23
24
25
26
27
28
# Test different image extensions (JPG/PNG) and formats (gray/RGB/RGBA)
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",
]


29
@pytest.fixture(scope="module")
30
def server():
31
    args = [
32
33
        "--task",
        "generate",
34
35
36
37
38
39
40
        "--max-model-len",
        "2048",
        "--max-num-seqs",
        "5",
        "--enforce-eager",
        "--trust-remote-code",
        "--limit-mm-per-prompt",
41
        json.dumps({"image": MAXIMUM_IMAGES}),
42
43
44
    ]

    with RemoteOpenAIServer(MODEL_NAME, args) as remote_server:
45
        yield remote_server
46
47


48
49
50
51
@pytest_asyncio.fixture
async def client(server):
    async with server.get_async_client() as async_client:
        yield async_client
52
53


54
@pytest.fixture(scope="session")
55
def base64_encoded_image() -> dict[str, str]:
56
    return {
57
        image_url: encode_image_base64(fetch_image(image_url))
58
59
60
61
        for image_url in TEST_IMAGE_URLS
    }


pansicheng's avatar
pansicheng committed
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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}",
    }]
    images = [Image.open(requests.get(image_url, stream=True).raw)]

    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]


81
82
83
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("image_url", TEST_IMAGE_URLS)
84
async def test_single_chat_session_image(client: openai.AsyncOpenAI,
85
                                         model_name: str, image_url: str):
pansicheng's avatar
pansicheng committed
86
    content_text = "What's in this image?"
87
88
89
90
91
92
93
94
95
96
97
98
    messages = [{
        "role":
        "user",
        "content": [
            {
                "type": "image_url",
                "image_url": {
                    "url": image_url
                }
            },
            {
                "type": "text",
pansicheng's avatar
pansicheng committed
99
                "text": content_text
100
101
102
103
            },
        ],
    }]

pansicheng's avatar
pansicheng committed
104
    max_completion_tokens = 10
105
    # test single completion
106
107
108
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
pansicheng's avatar
pansicheng committed
109
        max_completion_tokens=max_completion_tokens,
110
        logprobs=True,
111
        temperature=0.0,
112
        top_logprobs=5)
113
114
115
116
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
pansicheng's avatar
pansicheng committed
117
118
    hf_prompt_tokens = get_hf_prompt_tokens(model_name, content_text,
                                            image_url)
119
    assert chat_completion.usage == openai.types.CompletionUsage(
pansicheng's avatar
pansicheng committed
120
121
122
        completion_tokens=max_completion_tokens,
        prompt_tokens=hf_prompt_tokens,
        total_tokens=hf_prompt_tokens + max_completion_tokens)
123
124
125
126
127
128
129
130
131
132
133
134

    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,
135
        max_completion_tokens=10,
136
137
138
139
140
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
@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)


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
@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,
198
        max_completion_tokens=10,
199
200
201
202
203
204
205
206
        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


207
208
209
210
@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(
211
        client: openai.AsyncOpenAI, model_name: str, image_url: str,
212
        base64_encoded_image: dict[str, str]):
213

pansicheng's avatar
pansicheng committed
214
    content_text = "What's in this image?"
215
216
217
218
219
220
221
222
223
224
225
226
227
    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
228
                "text": content_text
229
230
231
232
            },
        ],
    }]

pansicheng's avatar
pansicheng committed
233
    max_completion_tokens = 10
234
    # test single completion
235
236
237
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
pansicheng's avatar
pansicheng committed
238
        max_completion_tokens=max_completion_tokens,
239
        logprobs=True,
240
        temperature=0.0,
241
        top_logprobs=5)
242
243
244
245
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
pansicheng's avatar
pansicheng committed
246
247
    hf_prompt_tokens = get_hf_prompt_tokens(model_name, content_text,
                                            image_url)
248
    assert chat_completion.usage == openai.types.CompletionUsage(
pansicheng's avatar
pansicheng committed
249
250
251
        completion_tokens=max_completion_tokens,
        prompt_tokens=hf_prompt_tokens,
        total_tokens=hf_prompt_tokens + max_completion_tokens)
252
253
254
255
256
257
258
259
260
261
262
263

    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,
264
        max_completion_tokens=10,
265
        temperature=0.0,
266
267
268
269
270
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


271
272
273
274
275
@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_beamsearch(
        client: openai.AsyncOpenAI, model_name: str, image_url: str,
276
        base64_encoded_image: dict[str, str]):
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298

    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,
299
        max_completion_tokens=10,
300
301
302
303
304
305
        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


306
307
308
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("image_url", TEST_IMAGE_URLS)
309
async def test_chat_streaming_image(client: openai.AsyncOpenAI,
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
                                    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,
332
        max_completion_tokens=10,
333
334
335
336
337
338
339
340
341
        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,
342
        max_completion_tokens=10,
343
344
345
        temperature=0.0,
        stream=True,
    )
346
    chunks: list[str] = []
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
    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])
365
366
367
@pytest.mark.parametrize(
    "image_urls",
    [TEST_IMAGE_URLS[:i] for i in range(2, len(TEST_IMAGE_URLS))])
368
async def test_multi_image_input(client: openai.AsyncOpenAI, model_name: str,
369
                                 image_urls: list[str]):
370
371
372
373
374

    messages = [{
        "role":
        "user",
        "content": [
375
            *({
376
377
378
379
                "type": "image_url",
                "image_url": {
                    "url": image_url
                }
380
            } for image_url in image_urls),
381
382
383
384
385
386
387
            {
                "type": "text",
                "text": "What's in this image?"
            },
        ],
    }]

388
389
390
391
392
    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,
393
                max_completion_tokens=10,
394
395
396
397
398
399
400
401
402
403
404
405
406
407
                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(
408
409
            model=model_name,
            messages=messages,
410
            max_completion_tokens=10,
411
412
            temperature=0.0,
        )
413
414
        message = chat_completion.choices[0].message
        assert message.content is not None and len(message.content) >= 0