litellm/tests/e2e/load/load_client.py
yassin aa36cab5ca style(e2e): drop narrative comments from load suite per repo convention
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2026-07-17 17:31:04 +00:00

14 lines
278 B
Python

from __future__ import annotations
from dataclasses import dataclass
from e2e_gateway import Gateway, build_gateway
@dataclass(frozen=True, slots=True)
class LoadClient:
gateway: Gateway
def build_client() -> LoadClient:
return LoadClient(gateway=build_gateway())