mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-15 23:31:29 +00:00
* fix(tests): replace shut-down gpt-4o-audio-preview with gpt-audio-1.5 OpenAI shut down gpt-4o-audio-preview on 2026-05-07, so the live audio calls in test_stream_chunk_builder_openai_audio_output_usage and test_standard_logging_payload_audio now hard-fail with a model-not-found error on every PR. The error was not "openai-internal", so the except block swallowed it and execution fell through to an unbound completion/response (UnboundLocalError). Switch both tests to gpt-audio-1.5, OpenAI's recommended successor (GA, not deprecated, already present in the litellm cost map so the response_cost assertion still resolves). Also broaden the except to skip with the real error in the reason instead of crashing, so a transient upstream blip can't reintroduce the UnboundLocalError. * fix(tests): narrow audio-test skip to model-not-found, re-raise the rest Address review feedback: an unconditional skip on any exception would silently mask a litellm-internal regression in the audio path (broken param transformation, serialization, bad header) instead of failing CI. Skip only on the upstream-unavailable class (model_not_found / "does not exist" / openai-internal) and re-raise everything else, so genuine regressions still fail loudly. The UnboundLocalError is still fixed because the handler either skips or raises - it never falls through. * fix(tests): add budget_exceeded to expected Interaction status enum Staging added budget_exceeded to the Interaction OpenAPI status enum; the staging merge into this branch picked up the spec change but not the matching test update, so test_status_enum_values failed in CI. Align the test's expected list (exact-match by design) with the live spec. * fix(tests): mock HTTP fetch in test_img_url_token_counter The test parameterized a live third-party image URL (blog.purpureus.net) which now 404s, causing get_image_dimensions to fall through to its base64 decode path and crash with 'not enough values to unpack' on every PR run. Mock safe_get with a tiny 1x1 PNG so the URL branch is still exercised without any network dependency. * fix(tests): swap gpt-4o-audio-preview to gpt-audio-1.5 in test_gpt4o_audio OpenAI shut down gpt-4o-audio-preview on 2026-05-07, so both live tests in test_gpt4o_audio.py (test_audio_output_from_model and test_audio_input_to_model) hard-fail model_not_found on every PR. Swap the hardcoded model to OpenAI's successor gpt-audio-1.5 (same chat-completions audio surface; already in the litellm cost map). Mirror the narrowed-skip pattern from the prior audio fixes: skip on model_not_found / does-not-exist / openai-internal, re-raise everything else so genuine litellm regressions still fail CI loudly.
146 lines
4.9 KiB
Python
146 lines
4.9 KiB
Python
import json
|
|
import os
|
|
import sys
|
|
from datetime import datetime
|
|
from unittest.mock import AsyncMock
|
|
|
|
sys.path.insert(
|
|
0, os.path.abspath("../..")
|
|
) # Adds the parent directory to the system path
|
|
|
|
|
|
import httpx
|
|
import pytest
|
|
|
|
import litellm
|
|
from litellm import Choices, Message, ModelResponse
|
|
from litellm.types.utils import StreamingChoices, ChatCompletionAudioResponse
|
|
import base64
|
|
import requests
|
|
|
|
|
|
def check_non_streaming_response(completion):
|
|
assert completion.choices[0].message.audio is not None, "Audio response is missing"
|
|
assert isinstance(
|
|
completion.choices[0].message.audio, ChatCompletionAudioResponse
|
|
), "Invalid audio response type"
|
|
assert len(completion.choices[0].message.audio.data) > 0, "Audio data is empty"
|
|
|
|
|
|
async def check_streaming_response(completion):
|
|
_audio_bytes = None
|
|
_audio_transcript = None
|
|
_audio_id = None
|
|
async for chunk in completion:
|
|
print(chunk)
|
|
if len(chunk.choices) == 0:
|
|
continue
|
|
_choice: StreamingChoices = chunk.choices[0]
|
|
if _choice.delta is not None and _choice.delta.audio is not None:
|
|
if _choice.delta.audio.get("data") is not None:
|
|
_audio_bytes = _choice.delta.audio["data"]
|
|
if _choice.delta.audio.get("transcript") is not None:
|
|
_audio_transcript = _choice.delta.audio["transcript"]
|
|
if _choice.delta.audio.get("id") is not None:
|
|
_audio_id = _choice.delta.audio["id"]
|
|
# Atleast one chunk should have set _audio_bytes, _audio_transcript, _audio_id
|
|
assert _audio_bytes is not None
|
|
assert _audio_transcript is not None
|
|
assert _audio_id is not None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
# @pytest.mark.flaky(retries=3, delay=1)
|
|
@pytest.mark.parametrize("stream", [True, False])
|
|
async def test_audio_output_from_model(stream):
|
|
audio_format = "pcm16"
|
|
if stream is False:
|
|
audio_format = "wav"
|
|
litellm.set_verbose = False
|
|
try:
|
|
completion = await litellm.acompletion(
|
|
model="gpt-audio-1.5",
|
|
modalities=["text", "audio"],
|
|
audio={"voice": "alloy", "format": "pcm16"},
|
|
messages=[{"role": "user", "content": "response in 1 word - yes or no"}],
|
|
stream=stream,
|
|
)
|
|
except litellm.Timeout as e:
|
|
print(e)
|
|
pytest.skip("Skipping test due to timeout")
|
|
except Exception as e:
|
|
err = str(e).lower()
|
|
if (
|
|
"model_not_found" in err
|
|
or "does not exist" in err
|
|
or "openai-internal" in err
|
|
):
|
|
pytest.skip(f"Skipping - upstream gpt-audio-1.5 unavailable: {e}")
|
|
raise
|
|
|
|
if stream is True:
|
|
await check_streaming_response(completion)
|
|
|
|
else:
|
|
print("response= ", completion)
|
|
check_non_streaming_response(completion)
|
|
wav_bytes = base64.b64decode(completion.choices[0].message.audio.data)
|
|
with open("dog.wav", "wb") as f:
|
|
f.write(wav_bytes)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.parametrize("stream", [True, False])
|
|
@pytest.mark.parametrize("model", ["gpt-audio-1.5"])
|
|
async def test_audio_input_to_model(stream, model):
|
|
# Fetch the audio file and convert it to a base64 encoded string
|
|
audio_format = "pcm16"
|
|
if stream is False:
|
|
audio_format = "wav"
|
|
litellm._turn_on_debug()
|
|
litellm.drop_params = True
|
|
url = "https://openaiassets.blob.core.windows.net/$web/API/docs/audio/alloy.wav"
|
|
response = requests.get(url)
|
|
response.raise_for_status()
|
|
wav_data = response.content
|
|
encoded_string = base64.b64encode(wav_data).decode("utf-8")
|
|
try:
|
|
completion = await litellm.acompletion(
|
|
model=model,
|
|
modalities=["text", "audio"],
|
|
audio={"voice": "alloy", "format": audio_format},
|
|
stream=stream,
|
|
messages=[
|
|
{
|
|
"role": "user",
|
|
"content": [
|
|
{"type": "text", "text": "What is in this recording?"},
|
|
{
|
|
"type": "input_audio",
|
|
"input_audio": {"data": encoded_string, "format": "wav"},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
)
|
|
except litellm.Timeout as e:
|
|
print(e)
|
|
pytest.skip("Skipping test due to timeout")
|
|
except Exception as e:
|
|
err = str(e).lower()
|
|
if (
|
|
"model_not_found" in err
|
|
or "does not exist" in err
|
|
or "openai-internal" in err
|
|
):
|
|
pytest.skip(f"Skipping - upstream gpt-audio-1.5 unavailable: {e}")
|
|
raise
|
|
if stream is True:
|
|
await check_streaming_response(completion)
|
|
else:
|
|
print("response= ", completion)
|
|
|
|
check_non_streaming_response(completion)
|
|
wav_bytes = base64.b64decode(completion.choices[0].message.audio.data)
|
|
with open("dog.wav", "wb") as f:
|
|
f.write(wav_bytes)
|