test_vision.py 11.1 KB
Newer Older
1
from typing import Dict, List
2
3
4

import openai
import pytest
5
import os
6
import pytest_asyncio
7

8
from vllm.multimodal.utils import encode_image_base64, fetch_image
9

10
from ...utils import RemoteOpenAIServer, models_path_prefix, urls_port
11

12
MODEL_NAME = os.path.join(models_path_prefix, "microsoft/Phi-3.5-vision-instruct")
13
MAXIMUM_IMAGES = 2
14

zhuwenwen's avatar
zhuwenwen committed
15
16


17
# Test different image extensions (JPG/PNG) and formats (gray/RGB/RGBA)
zhuwenwen's avatar
zhuwenwen committed
18
19
20
21
22
23
# 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",
# ]
24
TEST_IMAGE_URLS = [
25
26
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",
    f"http://localhost:{urls_port}/Venn_diagram_rgb.svg/1280px-Venn_diagram_rgb.svg.png",
    f"http://localhost:{urls_port}/RGBA_comp.png",
29
30
31
]


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

    with RemoteOpenAIServer(MODEL_NAME, args) as remote_server:
50
        yield remote_server
51
52


53
54
55
56
@pytest_asyncio.fixture
async def client(server):
    async with server.get_async_client() as async_client:
        yield async_client
57
58


59
60
@pytest.fixture(scope="session")
def base64_encoded_image() -> Dict[str, str]:
61
    return {
62
        image_url: encode_image_base64(fetch_image(image_url))
63
64
65
66
67
68
69
        for image_url in TEST_IMAGE_URLS
    }


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("image_url", TEST_IMAGE_URLS)
70
async def test_single_chat_session_image(client: openai.AsyncOpenAI,
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
                                         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
90
91
92
93
94
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        logprobs=True,
95
        temperature=0.0,
96
        top_logprobs=5)
97
98
99
100
101
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
    assert chat_completion.usage == openai.types.CompletionUsage(
102
        completion_tokens=10, prompt_tokens=775, total_tokens=785)
103
104
105
106
107
108
109
110
111
112
113
114

    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,
115
        max_completion_tokens=10,
116
117
118
119
120
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
@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,
148
        max_completion_tokens=10,
149
150
151
152
153
154
155
156
        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


157
158
159
160
@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(
161
        client: openai.AsyncOpenAI, model_name: str, image_url: str,
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
        base64_encoded_image: Dict[str, str]):

    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?"
            },
        ],
    }]

    # test single completion
183
184
185
186
187
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        logprobs=True,
188
        temperature=0.0,
189
        top_logprobs=5)
190
191
192
193
194
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
    assert chat_completion.usage == openai.types.CompletionUsage(
195
        completion_tokens=10, prompt_tokens=775, total_tokens=785)
196
197
198
199
200
201
202
203
204
205
206
207

    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,
208
        max_completion_tokens=10,
209
        temperature=0.0,
210
211
212
213
214
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
@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,
        base64_encoded_image: Dict[str, str]):

    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,
243
        max_completion_tokens=10,
244
245
246
247
248
249
        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


250
251
252
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("image_url", TEST_IMAGE_URLS)
253
async def test_chat_streaming_image(client: openai.AsyncOpenAI,
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
                                    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,
276
        max_completion_tokens=10,
277
278
279
280
281
282
283
284
285
        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,
286
        max_completion_tokens=10,
287
288
289
        temperature=0.0,
        stream=True,
    )
290
    chunks: List[str] = []
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
    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])
309
310
311
@pytest.mark.parametrize(
    "image_urls",
    [TEST_IMAGE_URLS[:i] for i in range(2, len(TEST_IMAGE_URLS))])
312
async def test_multi_image_input(client: openai.AsyncOpenAI, model_name: str,
313
                                 image_urls: List[str]):
314
315
316
317
318

    messages = [{
        "role":
        "user",
        "content": [
319
            *({
320
321
322
323
                "type": "image_url",
                "image_url": {
                    "url": image_url
                }
324
            } for image_url in image_urls),
325
326
327
328
329
330
331
            {
                "type": "text",
                "text": "What's in this image?"
            },
        ],
    }]

332
333
334
335
336
    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,
337
                max_completion_tokens=10,
338
339
340
341
342
343
344
345
346
347
348
349
350
351
                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(
352
353
            model=model_name,
            messages=messages,
354
            max_completion_tokens=10,
355
356
            temperature=0.0,
        )
357
358
        message = chat_completion.choices[0].message
        assert message.content is not None and len(message.content) >= 0