(content: bytes)
| 348 | |
| 349 | |
| 350 | def _parse_usage_performance(content: bytes) -> tuple[float | None, float | None]: |
| 351 | usage = parse_usage_metrics(content, "", _get_pricing()) |
| 352 | if usage is None: |
| 353 | return None, None |
| 354 | return usage.ttft_ms, usage.tps |
| 355 | |
| 356 | |
| 357 | def _get_client() -> httpx.AsyncClient: |
nothing calls this directly
no test coverage detected