mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-10 22:41:41 +00:00
BadRequestErrorRetries and ContentPolicyViolationErrorRetries did let a retry happen, but the retry re-picked the deployment that had just refused, since a 400 never puts a deployment in cooldown. On a weighted model group the caller got the same 400 back after every configured retry, and the existing 401/403 "retry on another deployment" rule broke the same way A retry after a non-transient status now carries the deployments that already answered this request in the per-request exclusion list weighted failover already honors, so the next attempt lands on a sibling. Single-deployment groups still retry in place, and 408/429/5xx retries are untouched Adds live e2e coverage for reliability.retry.context_window.succeeds_within_retries and renames the two litellm.utils deployment filters that are now called from outside the module
107 lines
4.5 KiB
Python
107 lines
4.5 KiB
Python
"""Live e2e: a request that fails on its first deployment is retried inside its own
|
|
model group and still comes back a completion.
|
|
|
|
Each model group is a pair: a deployment that always refuses and holds all of the
|
|
group's shuffle weight, plus a healthy backup at weight 0. The weighted pick always
|
|
opens on the refusing one, so the customer sees a completion only if the retry
|
|
lands on the backup, and the proxy reports that it took a retry to get there, with
|
|
no random first pick in the middle of it.
|
|
|
|
The timeout pair relies on cooldown: the first Timeout benches the timing-out
|
|
deployment (an `allowed_fails_policy` of `TimeoutErrorAllowedFails: 0`) and the
|
|
retry falls through to the only deployment left. The context-window pair cannot:
|
|
a 400 never benches a deployment, so the retry policy's `BadRequestErrorRetries`
|
|
has to steer the retry off the deployment that just refused the prompt.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from complexity_router_client import ComplexityRouterClient
|
|
from e2e_config import unique_marker
|
|
from e2e_http import StreamingResponse
|
|
from lifecycle import ResourceManager
|
|
from models import RouterSettingsOverride
|
|
from reliability_support import (
|
|
chat_override,
|
|
completion_tokens_of,
|
|
content_of,
|
|
create_always_picked_small_context_deployment,
|
|
create_always_timing_out_deployment,
|
|
create_zero_weight_backup_deployment,
|
|
finish_reason_of,
|
|
oversized_prompt,
|
|
)
|
|
|
|
pytestmark = pytest.mark.e2e
|
|
|
|
|
|
def assert_retry_landed_on_backup(resp: StreamingResponse) -> None:
|
|
assert resp.status_code == 200, (
|
|
f"the retry should have landed on the healthy backup, got {resp.status_code}: {resp.body[:300]}"
|
|
)
|
|
|
|
attempted = resp.headers.get("x-litellm-attempted-retries")
|
|
assert attempted is not None, "response is missing the x-litellm-attempted-retries header"
|
|
assert int(attempted) >= 1, (
|
|
f"x-litellm-attempted-retries is {attempted!r}; a 200 with no retry means the request never "
|
|
"opened on the refusing deployment, so this proves nothing about retries"
|
|
)
|
|
|
|
content = content_of(resp)
|
|
finish_reason = finish_reason_of(resp)
|
|
completion_tokens = completion_tokens_of(resp) or 0
|
|
assert isinstance(content, str), (
|
|
f"the retry should have returned a completion body, got content {content!r} (body={resp.body[:300]})"
|
|
)
|
|
assert content or (finish_reason == "length" and completion_tokens > 0), (
|
|
f"the retry returned empty content with finish_reason={finish_reason!r}, "
|
|
f"completion_tokens={completion_tokens}; empty content is only acceptable when the budget "
|
|
f"was spent on non-visible reasoning (body={resp.body[:300]})"
|
|
)
|
|
|
|
|
|
class TestReliabilityRetries:
|
|
@pytest.mark.covers("reliability.retry.timeout.succeeds_within_retries")
|
|
def test_timeout_on_first_deployment_succeeds_on_retry(
|
|
self, client: ComplexityRouterClient, resources: ResourceManager, scoped_key: str
|
|
) -> None:
|
|
group = f"reliability-retry-{unique_marker()}"
|
|
timing_out = create_always_timing_out_deployment(client.proxy, group)
|
|
resources.defer(lambda: client.proxy.delete_model(timing_out))
|
|
backup = create_zero_weight_backup_deployment(client.proxy, group)
|
|
resources.defer(lambda: client.proxy.delete_model(backup))
|
|
|
|
resp = chat_override(
|
|
client.proxy,
|
|
scoped_key,
|
|
group,
|
|
f"say hi {unique_marker()}",
|
|
override=RouterSettingsOverride(num_retries=2),
|
|
)
|
|
|
|
assert_retry_landed_on_backup(resp)
|
|
|
|
@pytest.mark.covers("reliability.retry.context_window.succeeds_within_retries")
|
|
def test_context_window_refusal_on_first_deployment_succeeds_on_retry(
|
|
self, client: ComplexityRouterClient, resources: ResourceManager, scoped_key: str
|
|
) -> None:
|
|
group = f"reliability-retry-{unique_marker()}"
|
|
small_context = create_always_picked_small_context_deployment(client.proxy, group)
|
|
resources.defer(lambda: client.proxy.delete_model(small_context))
|
|
backup = create_zero_weight_backup_deployment(client.proxy, group)
|
|
resources.defer(lambda: client.proxy.delete_model(backup))
|
|
|
|
resp = chat_override(
|
|
client.proxy,
|
|
scoped_key,
|
|
group,
|
|
oversized_prompt(unique_marker()),
|
|
override=RouterSettingsOverride(
|
|
num_retries=2,
|
|
model_group_retry_policy={group: {"BadRequestErrorRetries": 2}},
|
|
),
|
|
)
|
|
|
|
assert_retry_landed_on_backup(resp)
|