test_audio.py 11.9 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
9

10
11
from vllm.assets.audio import AudioAsset
from vllm.multimodal.utils import encode_audio_base64, fetch_audio
12

13
from ...utils import RemoteOpenAIServer
14

15
MODEL_NAME = "fixie-ai/ultravox-v0_5-llama-3_2-1b"
16
TEST_AUDIO_URLS = [
17
    AudioAsset("winning_call").url,
18
    AudioAsset("mary_had_lamb").url,
19
]
20
MAXIMUM_AUDIOS = 2
21
22


23
24
25
@pytest.fixture(scope="module")
def server():
    args = [
26
27
        "--dtype",
        "float32",
28
        "--max-model-len",
29
30
31
        "2048",
        "--max-num-seqs",
        "5",
32
        "--enforce-eager",
33
        "--trust-remote-code",
34
        "--limit-mm-per-prompt",
35
        json.dumps({"audio": MAXIMUM_AUDIOS}),
36
37
38
39
    ]

    with RemoteOpenAIServer(MODEL_NAME, args) as remote_server:
        yield remote_server
40
41


42
43
44
45
@pytest_asyncio.fixture
async def client(server):
    async with server.get_async_client() as async_client:
        yield async_client
46
47
48


@pytest.fixture(scope="session")
49
def base64_encoded_audio() -> dict[str, str]:
50
51
52
53
54
55
    return {
        audio_url: encode_audio_base64(*fetch_audio(audio_url))
        for audio_url in TEST_AUDIO_URLS
    }


56
57
58
def dummy_messages_from_audio_url(
    audio_urls: str | list[str],
    content_text: str = "What's happening in this audio?",
59
):
60
61
62
63
    if isinstance(audio_urls, str):
        audio_urls = [audio_urls]

    return [
64
65
66
        {
            "role": "user",
            "content": [
67
68
69
70
71
                *(
                    {"type": "audio_url", "audio_url": {"url": audio_url}}
                    for audio_url in audio_urls
                ),
                {"type": "text", "text": content_text},
72
73
74
            ],
        }
    ]
75

76
77
78
79
80
81
82
83
84

@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("audio_url", [TEST_AUDIO_URLS[0]])
async def test_single_chat_session_audio(
    client: openai.AsyncOpenAI, model_name: str, audio_url: str
):
    messages = dummy_messages_from_audio_url(audio_url)

85
    # test single completion
86
87
88
89
90
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        logprobs=True,
91
        temperature=0.0,
92
93
        top_logprobs=5,
    )
94
95
96
97
98
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
    assert chat_completion.usage == openai.types.CompletionUsage(
99
100
        completion_tokens=10, prompt_tokens=202, total_tokens=212
    )
101
102
103
104
105
106
107
108
109
110
111
112

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


119
120
121
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("audio_url", [TEST_AUDIO_URLS[0]])
122
123
124
125
126
127
128
129
130
131
132
133
async def test_error_on_invalid_audio_url_type(
    client: openai.AsyncOpenAI, model_name: str, audio_url: str
):
    messages = [
        {
            "role": "user",
            "content": [
                {"type": "audio_url", "audio_url": audio_url},
                {"type": "text", "text": "What's happening in this audio?"},
            ],
        }
    ]
134
135
136

    # audio_url should be a dict {"url": "some url"}, not directly a string
    with pytest.raises(openai.BadRequestError):
137
138
139
140
141
142
        _ = await client.chat.completions.create(
            model=model_name,
            messages=messages,
            max_completion_tokens=10,
            temperature=0.0,
        )
143
144


145
146
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
147
@pytest.mark.parametrize("audio_url", [TEST_AUDIO_URLS[0]])
148
async def test_single_chat_session_audio_base64encoded(
149
150
151
152
153
    client: openai.AsyncOpenAI,
    model_name: str,
    audio_url: str,
    base64_encoded_audio: dict[str, str],
):
154
155
156
    messages = dummy_messages_from_audio_url(
        f"data:audio/wav;base64,{base64_encoded_audio[audio_url]}"
    )
157
158

    # test single completion
159
160
161
162
163
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        logprobs=True,
164
        temperature=0.0,
165
166
        top_logprobs=5,
    )
167
168
169
170
171
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
    assert chat_completion.usage == openai.types.CompletionUsage(
172
173
        completion_tokens=10, prompt_tokens=202, total_tokens=212
    )
174
175
176
177
178
179
180
181
182
183
184
185

    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,
186
        max_completion_tokens=10,
187
        temperature=0.0,
188
189
190
191
192
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


193
194
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
195
@pytest.mark.parametrize("audio_url", [TEST_AUDIO_URLS[0]])
196
async def test_single_chat_session_input_audio(
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
    client: openai.AsyncOpenAI,
    model_name: str,
    audio_url: str,
    base64_encoded_audio: dict[str, str],
):
    messages = [
        {
            "role": "user",
            "content": [
                {
                    "type": "input_audio",
                    "input_audio": {
                        "data": base64_encoded_audio[audio_url],
                        "format": "wav",
                    },
                },
                {"type": "text", "text": "What's happening in this audio?"},
            ],
        }
    ]
217
218
219
220
221
222
223

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        logprobs=True,
224
225
        top_logprobs=5,
    )
226
227
228
229
230
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
    assert chat_completion.usage == openai.types.CompletionUsage(
231
232
        completion_tokens=10, prompt_tokens=202, total_tokens=212
    )
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250

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


251
252
253
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("audio_url", TEST_AUDIO_URLS)
254
255
256
async def test_chat_streaming_audio(
    client: openai.AsyncOpenAI, model_name: str, audio_url: str
):
257
258
259
    messages = dummy_messages_from_audio_url(
        audio_url, "What's a short title for this audio?"
    )
260
261
262
263
264

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
265
        max_completion_tokens=8,
266
267
268
269
270
271
272
273
274
        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,
275
        max_completion_tokens=8,
276
277
278
        temperature=0.0,
        stream=True,
    )
279
    chunks: list[str] = []
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
    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


296
297
298
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("audio_url", TEST_AUDIO_URLS)
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
async def test_chat_streaming_input_audio(
    client: openai.AsyncOpenAI,
    model_name: str,
    audio_url: str,
    base64_encoded_audio: dict[str, str],
):
    messages = [
        {
            "role": "user",
            "content": [
                {
                    "type": "input_audio",
                    "input_audio": {
                        "data": base64_encoded_audio[audio_url],
                        "format": "wav",
                    },
                },
316
                {"type": "text", "text": "What's a short title for this audio?"},
317
318
319
            ],
        }
    ]
320
321
322
323
324

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
325
        max_completion_tokens=8,
326
327
328
329
330
331
332
333
334
        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,
335
        max_completion_tokens=8,
336
337
338
        temperature=0.0,
        stream=True,
    )
339
    chunks: list[str] = []
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
    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


356
357
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
358
@pytest.mark.parametrize(
359
360
361
362
363
    "audio_urls", [TEST_AUDIO_URLS, TEST_AUDIO_URLS + [TEST_AUDIO_URLS[0]]]
)
async def test_multi_audio_input(
    client: openai.AsyncOpenAI, model_name: str, audio_urls: list[str]
):
364
    messages = dummy_messages_from_audio_url(audio_urls)
365

366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
    if len(audio_urls) > MAXIMUM_AUDIOS:
        with pytest.raises(openai.BadRequestError):  # test multi-audio input
            await client.chat.completions.create(
                model=model_name,
                messages=messages,
                max_completion_tokens=10,
                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(
386
387
            model=model_name,
            messages=messages,
388
            max_completion_tokens=10,
389
390
            temperature=0.0,
        )
391
392
        message = chat_completion.choices[0].message
        assert message.content is not None and len(message.content) >= 0