mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-19 07:15:01 +08:00
[CI] Re-use whisper_client for all tests (#30148)
Signed-off-by: NickLucche <nlucches@redhat.com>
This commit is contained in:
parent
3633035a3f
commit
e23ca3a0e8
@ -32,13 +32,9 @@ async def whisper_client(server):
|
|||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
async def test_basic_audio(mary_had_lamb):
|
async def test_basic_audio(whisper_client, mary_had_lamb):
|
||||||
server_args = ["--enforce-eager"]
|
|
||||||
|
|
||||||
# Based on https://github.com/openai/openai-cookbook/blob/main/examples/Whisper_prompting_guide.ipynb.
|
# Based on https://github.com/openai/openai-cookbook/blob/main/examples/Whisper_prompting_guide.ipynb.
|
||||||
with RemoteOpenAIServer(MODEL_NAME, server_args) as remote_server:
|
transcription = await whisper_client.audio.transcriptions.create(
|
||||||
client = remote_server.get_async_client()
|
|
||||||
transcription = await client.audio.transcriptions.create(
|
|
||||||
model=MODEL_NAME,
|
model=MODEL_NAME,
|
||||||
file=mary_had_lamb,
|
file=mary_had_lamb,
|
||||||
language="en",
|
language="en",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user