test_audio.py 11.8 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
4
import json

5
6
import openai
import pytest
7
import pytest_asyncio
8

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

12
from ...utils import RemoteOpenAIServer
13

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


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

    with RemoteOpenAIServer(MODEL_NAME, args) as remote_server:
        yield remote_server
37
38


39
40
41
42
@pytest_asyncio.fixture
async def client(server):
    async with server.get_async_client() as async_client:
        yield async_client
43
44
45


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


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
55
@pytest.mark.parametrize("audio_url", [TEST_AUDIO_URLS[0]])
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
async def test_single_chat_session_audio(client: openai.AsyncOpenAI,
                                         model_name: str, audio_url: str):
    messages = [{
        "role":
        "user",
        "content": [
            {
                "type": "audio_url",
                "audio_url": {
                    "url": audio_url
                }
            },
            {
                "type": "text",
                "text": "What's happening in this audio?"
            },
        ],
    }]

    # test single completion
76
77
78
79
80
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        logprobs=True,
81
        temperature=0.0,
82
        top_logprobs=5)
83
84
85
86
87
    assert len(chat_completion.choices) == 1

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
    assert chat_completion.usage == openai.types.CompletionUsage(
88
        completion_tokens=10, prompt_tokens=202, total_tokens=212)
89
90
91
92
93
94
95
96
97
98
99
100

    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,
101
        max_completion_tokens=10,
102
103
104
105
106
107
108
    )
    message = chat_completion.choices[0].message
    assert message.content is not None and len(message.content) >= 0


@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
109
@pytest.mark.parametrize("audio_url", [TEST_AUDIO_URLS[0]])
110
111
async def test_single_chat_session_audio_base64encoded(
        client: openai.AsyncOpenAI, model_name: str, audio_url: str,
112
        base64_encoded_audio: dict[str, str]):
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132

    messages = [{
        "role":
        "user",
        "content": [
            {
                "type": "audio_url",
                "audio_url": {
                    "url":
                    f"data:audio/wav;base64,{base64_encoded_audio[audio_url]}"
                }
            },
            {
                "type": "text",
                "text": "What's happening in this audio?"
            },
        ],
    }]

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

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
    assert chat_completion.usage == openai.types.CompletionUsage(
145
        completion_tokens=10, prompt_tokens=202, total_tokens=212)
146
147
148
149
150
151
152
153
154
155
156
157

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


165
166
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
167
@pytest.mark.parametrize("audio_url", [TEST_AUDIO_URLS[0]])
168
169
async def test_single_chat_session_input_audio(
        client: openai.AsyncOpenAI, model_name: str, audio_url: str,
170
        base64_encoded_audio: dict[str, str]):
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
198
199
200
    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?"
            },
        ],
    }]

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

    choice = chat_completion.choices[0]
    assert choice.finish_reason == "length"
    assert chat_completion.usage == openai.types.CompletionUsage(
201
        completion_tokens=10, prompt_tokens=202, total_tokens=212)
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219

    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


220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("audio_url", TEST_AUDIO_URLS)
async def test_chat_streaming_audio(client: openai.AsyncOpenAI,
                                    model_name: str, audio_url: str):
    messages = [{
        "role":
        "user",
        "content": [
            {
                "type": "audio_url",
                "audio_url": {
                    "url": audio_url
                }
            },
            {
                "type": "text",
                "text": "What's happening in this audio?"
            },
        ],
    }]

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
246
        max_completion_tokens=10,
247
248
249
250
251
252
253
254
255
        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,
256
        max_completion_tokens=10,
257
258
259
        temperature=0.0,
        stream=True,
    )
260
    chunks: list[str] = []
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
    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


277
278
279
280
281
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
@pytest.mark.parametrize("audio_url", TEST_AUDIO_URLS)
async def test_chat_streaming_input_audio(client: openai.AsyncOpenAI,
                                          model_name: str, audio_url: str,
282
                                          base64_encoded_audio: dict[str,
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
                                                                     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?"
            },
        ],
    }]

    # test single completion
    chat_completion = await client.chat.completions.create(
        model=model_name,
        messages=messages,
        max_completion_tokens=10,
        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,
        max_completion_tokens=10,
        temperature=0.0,
        stream=True,
    )
320
    chunks: list[str] = []
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
    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


337
338
@pytest.mark.asyncio
@pytest.mark.parametrize("model_name", [MODEL_NAME])
339
340
@pytest.mark.parametrize(
    "audio_urls", [TEST_AUDIO_URLS, TEST_AUDIO_URLS + [TEST_AUDIO_URLS[0]]])
341
async def test_multi_audio_input(client: openai.AsyncOpenAI, model_name: str,
342
                                 audio_urls: list[str]):
343
344
345
346
347

    messages = [{
        "role":
        "user",
        "content": [
348
            *({
349
350
351
352
                "type": "audio_url",
                "audio_url": {
                    "url": audio_url
                }
353
            } for audio_url in audio_urls),
354
355
356
357
358
359
360
            {
                "type": "text",
                "text": "What's happening in this audio?"
            },
        ],
    }]

361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
    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(
381
382
            model=model_name,
            messages=messages,
383
            max_completion_tokens=10,
384
385
            temperature=0.0,
        )
386
387
        message = chat_completion.choices[0].message
        assert message.content is not None and len(message.content) >= 0