Unverified Commit e23ca3a0 authored by Nicolò Lucchesi's avatar Nicolò Lucchesi Committed by GitHub
Browse files

[CI] Re-use whisper_client for all tests (#30148)


Signed-off-by: default avatarNickLucche <nlucches@redhat.com>
parent 3633035a
...@@ -32,24 +32,20 @@ async def whisper_client(server): ...@@ -32,24 +32,20 @@ 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() model=MODEL_NAME,
transcription = await client.audio.transcriptions.create( file=mary_had_lamb,
model=MODEL_NAME, language="en",
file=mary_had_lamb, response_format="text",
language="en", temperature=0.0,
response_format="text", )
temperature=0.0, out = json.loads(transcription)
) out_text = out["text"]
out = json.loads(transcription) out_usage = out["usage"]
out_text = out["text"] assert "Mary had a little lamb," in out_text
out_usage = out["usage"] assert out_usage["seconds"] == 16, out_usage["seconds"]
assert "Mary had a little lamb," in out_text
assert out_usage["seconds"] == 16, out_usage["seconds"]
@pytest.mark.asyncio @pytest.mark.asyncio
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment