mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
14 lines
278 B
Python
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())
|