mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-27 01:22:18 +00:00
* ci: run the unit_selection.sh shard files on every event instead of only fork pull requests Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * ci: rename fork-flag to unit-flag now that it applies on every event * test: move tests/test_litellm root and small trees into tests/unit Pure renames, no content changes. Follow-up commits in this PR fix references, merge the three files that already existed in tests/unit, keep live-provider tests in tests/test_litellm and wire CI. * test: carry tests/test_litellm conftest isolation into tests/unit Callback lists, routing fallbacks, cached HTTP clients, logger state, AWS, proxy-URL and keychain env, and session-end client cleanup now reset for unit tests too. The environment isolation owns its MonkeyPatch so a test's own monkeypatch is undone before the model-cost teardown runs. * test: merge, split and prune the moved root and small-tree tests Merge batches/test_batch_utils.py and the chat_completions and messages dispatch tests into the files that already existed in tests/unit. Keep the live Gemini interactions tests, the async image-fetch format test and the OpenAI embedding scorer test in tests/test_litellm since they need real network or keys. Put test_router.py under tests/unit/test_router so the existing package no longer shadows it. Delete eight tests the audit found superseded by stronger ones kept in this move. * ci: run the moved root and small-tree tests under their legacy flags Add the misc and responses-caching-types flags to unit_selection.sh and CircleCI, extend enterprise-routing and mcp-integration, and point the legacy GHA shards, Makefile, redis-compat workflow, merge smoke manifest and change classifier at the new paths. * test: make the new tests/unit directories packages tests/unit/test_package_layout.py requires every directory to carry an __init__.py, and without one the moved and retained test_litellm_responses_bridge.py modules collide on import. * test: scope the unit socket block to tests/unit in shared sessions The GHA shards collect the legacy test-path and the unit selection in one pytest session. The unit conftest's loopback-only block leaked into legacy modules that reach the network at import. The legacy conftest now lifts the restriction at collect and setup time, and the unit conftest re-applies it when collecting its own modules. * test: move tests/test_litellm/llms into tests/unit/llms Rename-only. Moves the provider tests and the fine-tuning fixtures they load, mirroring the old paths. Follow-up commits merge, split and wire them. * test: merge, split and prune the moved llms tests Merges the Databricks chat transformation tests into the existing unit file, keeps the tests that need real keys or the network in tests/test_litellm, deletes the audited tests a stronger unit test already covers, and points imports at tests.unit.llms. * ci: run the moved llms tests under their legacy flags The Vertex AI and All Other Providers shards keep their legacy test-path for the retained files and add the llm-vertex-ai and llm-other-providers unit selections. CircleCI gets matching unit jobs. * test: make the tests/unit/llms directories packages Adds __init__.py to the moved dirs and drops the legacy ones whose directories no longer hold tests. * test: drop script runners and path hacks the llms split left dangling The __main__ runners in the split openai_like files and the Databricks e2e runner called tests that now live in the other half of the split or were deleted. The retained legacy halves also no longer need sys.path edits. * test: give the shard-script tests their own GITHUB_OUTPUT They only passed where the runner set it. The CircleCI unit job's env allowlist drops it, so the script's redirect failed there. * test: point the router and module-deletion checks at tests/unit router_code_coverage and code_qa_check_tests only searched tests/test_litellm, so the moved router tests no longer counted. The two silent-experiment tests the audit deleted were the only direct callers of those methods; they are replaced with tests that assert the forwarded shadow request and the recursion guard. * test: move tests/test_litellm integrations and secret_managers into tests/unit Rename-only. Mirrors the old paths, including the directory conftests and the prompt and JSON fixtures. Follow-up commits prune and wire them. * test: prune and repoint the moved integrations tests Deletes the 7 audited tests a stronger test in the same tree already covers, imports the TLS sink helpers from their new conftest path, and restores os.environ after each integrations test. Some presets write OTEL_EXPORTER_OTLP_HEADERS straight into os.environ, and without the legacy tree's test ordering that header leaked into the AgentOps tests. * ci: run the moved integrations tests under their legacy flag The integrations GHA shard and a new CircleCI job run the integrations unit selection. secret_managers joins the misc selection. * docs: point integrations and secret_managers references at tests/unit * test: make the moved integrations directories packages * test: keep the Databricks manual e2e runner and fix the SageMaker Nova run path The Databricks e2e file is a manual script whose main() calls the tests that were pruned, so pruning them broke the documented run. It is back to its main version. The SageMaker Nova docstring now points at the file's real location in tests/local_testing. * test: keep the job's UNIT_FLAG out of the shard-script tests --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
295 lines
11 KiB
Python
295 lines
11 KiB
Python
"""
|
|
LIT-6611: every unique client-supplied model name that fails routing used to
|
|
mint permanent Prometheus series carrying ``requested_model="<junk>"`` on the
|
|
proxy request metrics and the deployment metrics, with no eviction. The fix
|
|
collapses any requested model the router does not recognize (and no wildcard
|
|
pattern matches) into the single ``other`` label bucket, while recognized
|
|
names, aliases, and wildcard-matched names keep their own label values.
|
|
"""
|
|
|
|
import sys
|
|
import types
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
from prometheus_client import REGISTRY
|
|
|
|
import litellm
|
|
from litellm.integrations.prometheus import (
|
|
UNRECOGNIZED_REQUESTED_MODEL_LABEL,
|
|
PrometheusLogger,
|
|
)
|
|
from litellm.proxy._types import UserAPIKeyAuth
|
|
|
|
|
|
class _ClientSideError(Exception):
|
|
status_code = 400
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def cleanup_prometheus_registry():
|
|
for collector in list(REGISTRY._collector_to_names.keys()):
|
|
try:
|
|
REGISTRY.unregister(collector)
|
|
except Exception:
|
|
pass
|
|
|
|
yield
|
|
|
|
for collector in list(REGISTRY._collector_to_names.keys()):
|
|
try:
|
|
REGISTRY.unregister(collector)
|
|
except Exception:
|
|
pass
|
|
|
|
|
|
@pytest.fixture
|
|
def router():
|
|
return litellm.Router(
|
|
model_list=[
|
|
{
|
|
"model_name": "gpt-4o-mini",
|
|
"litellm_params": {"model": "openai/gpt-4o-mini", "api_key": "fake-key"},
|
|
},
|
|
{
|
|
"model_name": "openai/*",
|
|
"litellm_params": {"model": "openai/*", "api_key": "fake-key"},
|
|
},
|
|
],
|
|
model_group_alias={"gpt4o-alias": "gpt-4o-mini"},
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def team_router():
|
|
return litellm.Router(
|
|
model_list=[
|
|
{
|
|
"model_name": "team-internal-gpt",
|
|
"litellm_params": {"model": "openai/gpt-4o-mini", "api_key": "fake-key"},
|
|
"model_info": {"team_id": "team-1", "team_public_model_name": "team-alias-gpt"},
|
|
},
|
|
{
|
|
"model_name": "team-internal-bedrock",
|
|
"litellm_params": {"model": "openai/*", "api_key": "fake-key"},
|
|
"model_info": {"team_id": "team-1", "team_public_model_name": "team-models/*"},
|
|
},
|
|
]
|
|
)
|
|
|
|
|
|
def _requested_model_values(metric) -> set[str]:
|
|
index = metric._labelnames.index("requested_model")
|
|
return {sample_key[index] for sample_key in metric._metrics}
|
|
|
|
|
|
def _series_count(metric) -> int:
|
|
return len(metric._metrics)
|
|
|
|
|
|
def _total_value(metric) -> float:
|
|
return sum(child._value.get() for child in metric._metrics.values())
|
|
|
|
|
|
async def _fire_proxy_failure(logger: PrometheusLogger, model: str) -> None:
|
|
await logger.async_post_call_failure_hook(
|
|
request_data={"model": model, "metadata": {}, "proxy_server_request": {}},
|
|
original_exception=_ClientSideError(f"model {model} does not exist"),
|
|
user_api_key_dict=UserAPIKeyAuth(api_key="hashed-key-1"),
|
|
)
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_unknown_models_collapse_to_one_series_on_proxy_request_metrics(router):
|
|
logger = PrometheusLogger()
|
|
|
|
with patch("litellm.proxy.proxy_server.llm_router", router, create=True): # test-quality-ok: production reads proxy_server.llm_router lazily, no injection seam
|
|
for index in range(25):
|
|
await _fire_proxy_failure(logger, f"agent-typo-{index}")
|
|
|
|
for metric in (
|
|
logger.litellm_proxy_failed_requests_metric,
|
|
logger.litellm_proxy_total_requests_metric,
|
|
):
|
|
assert _requested_model_values(metric) == {UNRECOGNIZED_REQUESTED_MODEL_LABEL}
|
|
assert _series_count(metric) == 1
|
|
assert _total_value(metric) == 25
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.parametrize("model", [["gpt-4o-mini"], {"name": "gpt-4o-mini"}, 123])
|
|
async def test_non_string_models_collapse_to_other_on_proxy_request_metrics(router, model: object):
|
|
logger = PrometheusLogger()
|
|
|
|
with patch("litellm.proxy.proxy_server.llm_router", router, create=True): # test-quality-ok: production reads proxy_server.llm_router lazily, no injection seam
|
|
await logger.async_post_call_failure_hook(
|
|
request_data={"model": model, "metadata": {}, "proxy_server_request": {}},
|
|
original_exception=_ClientSideError("'model' must be a string."),
|
|
user_api_key_dict=UserAPIKeyAuth(api_key="hashed-key-1"),
|
|
)
|
|
|
|
assert _requested_model_values(logger.litellm_proxy_failed_requests_metric) == {UNRECOGNIZED_REQUESTED_MODEL_LABEL}
|
|
assert _total_value(logger.litellm_proxy_failed_requests_metric) == 1
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_known_alias_and_wildcard_models_keep_their_own_labels(router):
|
|
logger = PrometheusLogger()
|
|
|
|
with patch("litellm.proxy.proxy_server.llm_router", router, create=True): # test-quality-ok: production reads proxy_server.llm_router lazily, no injection seam
|
|
await _fire_proxy_failure(logger, "gpt-4o-mini")
|
|
await _fire_proxy_failure(logger, "gpt4o-alias")
|
|
await _fire_proxy_failure(logger, "openai/gpt-4o-audio-preview")
|
|
await _fire_proxy_failure(logger, "agent-typo-hallucinated")
|
|
|
|
for metric in (
|
|
logger.litellm_proxy_failed_requests_metric,
|
|
logger.litellm_proxy_total_requests_metric,
|
|
):
|
|
assert _requested_model_values(metric) == {
|
|
"gpt-4o-mini",
|
|
"gpt4o-alias",
|
|
"openai/gpt-4o-audio-preview",
|
|
UNRECOGNIZED_REQUESTED_MODEL_LABEL,
|
|
}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_team_alias_and_team_wildcard_models_keep_their_own_labels(team_router):
|
|
logger = PrometheusLogger()
|
|
|
|
with patch("litellm.proxy.proxy_server.llm_router", team_router, create=True): # test-quality-ok: production reads proxy_server.llm_router lazily, no injection seam
|
|
await _fire_proxy_failure(logger, "team-alias-gpt")
|
|
await _fire_proxy_failure(logger, "team-models/gpt-4o-audio-preview")
|
|
await _fire_proxy_failure(logger, "agent-typo-hallucinated")
|
|
|
|
for metric in (
|
|
logger.litellm_proxy_failed_requests_metric,
|
|
logger.litellm_proxy_total_requests_metric,
|
|
):
|
|
assert _requested_model_values(metric) == {
|
|
"team-alias-gpt",
|
|
"team-models/gpt-4o-audio-preview",
|
|
UNRECOGNIZED_REQUESTED_MODEL_LABEL,
|
|
}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_unknown_models_collapse_to_other_when_router_is_unavailable():
|
|
logger = PrometheusLogger()
|
|
|
|
with patch("litellm.proxy.proxy_server.llm_router", None, create=True): # test-quality-ok: production reads proxy_server.llm_router lazily, no injection seam
|
|
await _fire_proxy_failure(logger, "agent-typo-no-router")
|
|
await _fire_proxy_failure(logger, "gpt-4o-mini")
|
|
|
|
assert _requested_model_values(logger.litellm_proxy_failed_requests_metric) == {
|
|
UNRECOGNIZED_REQUESTED_MODEL_LABEL
|
|
}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_sdk_router_originated_metrics_keep_labels_without_proxy_router():
|
|
logger = PrometheusLogger()
|
|
|
|
with patch("litellm.proxy.proxy_server.llm_router", None, create=True): # test-quality-ok: production reads proxy_server.llm_router lazily, no injection seam
|
|
logger.set_llm_deployment_failure_metrics(
|
|
request_kwargs={
|
|
"model": "sdk-deployment-group",
|
|
"litellm_params": {"metadata": {}},
|
|
"standard_logging_object": {},
|
|
"exception": _ClientSideError("model does not exist"),
|
|
}
|
|
)
|
|
await logger.log_failure_fallback_event(
|
|
original_model_group="sdk-fallback-group",
|
|
kwargs={"model": "sdk-fallback-group", "metadata": {}},
|
|
original_exception=_ClientSideError("upstream unavailable"),
|
|
)
|
|
|
|
assert _requested_model_values(logger.litellm_deployment_failure_responses) == {"sdk-deployment-group"}
|
|
assert _requested_model_values(logger.litellm_deployment_failed_fallbacks) == {"sdk-fallback-group"}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_sdk_fallback_labels_survive_non_import_errors_from_proxy_module(monkeypatch):
|
|
logger = PrometheusLogger()
|
|
broken_proxy_module = types.ModuleType("litellm.proxy.proxy_server")
|
|
|
|
def _raise_value_error(_name: str):
|
|
raise ValueError("bad proxy env var")
|
|
|
|
broken_proxy_module.__getattr__ = _raise_value_error # test-quality-ok: reproduces a proxy_server import raising non-ImportError, no injection seam
|
|
monkeypatch.setitem(sys.modules, "litellm.proxy.proxy_server", broken_proxy_module) # test-quality-ok: reproduces a proxy_server import raising non-ImportError, no injection seam
|
|
|
|
await logger.log_failure_fallback_event(
|
|
original_model_group="sdk-fallback-group",
|
|
kwargs={"model": "sdk-fallback-group", "metadata": {}},
|
|
original_exception=_ClientSideError("upstream unavailable"),
|
|
)
|
|
|
|
assert _requested_model_values(logger.litellm_deployment_failed_fallbacks) == {"sdk-fallback-group"}
|
|
|
|
|
|
def test_unknown_models_collapse_to_one_series_on_deployment_metrics(router):
|
|
logger = PrometheusLogger()
|
|
|
|
with patch("litellm.proxy.proxy_server.llm_router", router, create=True): # test-quality-ok: production reads proxy_server.llm_router lazily, no injection seam
|
|
for index in range(25):
|
|
logger.set_llm_deployment_failure_metrics(
|
|
request_kwargs={
|
|
"model": f"agent-typo-{index}",
|
|
"litellm_params": {"metadata": {}},
|
|
"standard_logging_object": {},
|
|
"exception": _ClientSideError("model does not exist"),
|
|
}
|
|
)
|
|
logger.set_llm_deployment_failure_metrics(
|
|
request_kwargs={
|
|
"model": "gpt-4o-mini",
|
|
"litellm_params": {"metadata": {}},
|
|
"standard_logging_object": {},
|
|
"exception": _ClientSideError("all deployments cooling down"),
|
|
}
|
|
)
|
|
|
|
for metric in (
|
|
logger.litellm_deployment_failure_responses,
|
|
logger.litellm_deployment_total_requests,
|
|
):
|
|
assert _requested_model_values(metric) == {
|
|
UNRECOGNIZED_REQUESTED_MODEL_LABEL,
|
|
"gpt-4o-mini",
|
|
}
|
|
assert _series_count(metric) == 2
|
|
assert _total_value(metric) == 26
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fallback_event_requested_model_is_bounded(router):
|
|
logger = PrometheusLogger()
|
|
kwargs = {"model": "gpt-4o-mini", "metadata": {}}
|
|
|
|
with patch("litellm.proxy.proxy_server.llm_router", router, create=True): # test-quality-ok: production reads proxy_server.llm_router lazily, no injection seam
|
|
await logger.log_failure_fallback_event(
|
|
original_model_group="agent-typo-hallucinated",
|
|
kwargs=kwargs,
|
|
original_exception=_ClientSideError("model does not exist"),
|
|
)
|
|
await logger.log_success_fallback_event(
|
|
original_model_group="agent-typo-hallucinated",
|
|
kwargs=kwargs,
|
|
original_exception=_ClientSideError("model does not exist"),
|
|
)
|
|
await logger.log_failure_fallback_event(
|
|
original_model_group="gpt-4o-mini",
|
|
kwargs=kwargs,
|
|
original_exception=_ClientSideError("upstream unavailable"),
|
|
)
|
|
|
|
assert _requested_model_values(logger.litellm_deployment_failed_fallbacks) == {
|
|
UNRECOGNIZED_REQUESTED_MODEL_LABEL,
|
|
"gpt-4o-mini",
|
|
}
|
|
assert _requested_model_values(logger.litellm_deployment_successful_fallbacks) == {
|
|
UNRECOGNIZED_REQUESTED_MODEL_LABEL
|
|
}
|