From 893482d4acd15473542948babfcb52fe0f040a56 Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Tue, 25 Aug 2026 18:51:40 -0700 Subject: [PATCH] test(e2e): drop docstrings on the cost map model and its client accessor --- tests/e2e/models.py | 4 ---- tests/e2e/proxy_client.py | 3 --- 2 files changed, 7 deletions(-) diff --git a/tests/e2e/models.py b/tests/e2e/models.py index 086d3b03603..77555a9fc95 100644 --- a/tests/e2e/models.py +++ b/tests/e2e/models.py @@ -710,10 +710,6 @@ class ModelInfoResponse(BaseModel): class CostMapEntry(BaseModel): - """One `/public/litellm_model_cost_map` row: the price and capability flags the - proxy resolves for a `/` key. Tests pick a deployment from - these flags instead of hardcoding a model name that rots.""" - model_config = ConfigDict(extra="ignore") litellm_provider: str | None = None mode: str | None = None diff --git a/tests/e2e/proxy_client.py b/tests/e2e/proxy_client.py index c56a0649f58..2d382a610e1 100644 --- a/tests/e2e/proxy_client.py +++ b/tests/e2e/proxy_client.py @@ -254,9 +254,6 @@ class ProxyClient: ).data def model_cost_map(self) -> dict[str, CostMapEntry]: - """The registry the proxy prices with and gates capabilities on, keyed - `/`, read from the proxy itself so a test sees exactly the - map the deployment under test resolves against.""" return unwrap( self.transport.get( "/public/litellm_model_cost_map",