MCPcopy
hub / github.com/openai/openai-python / __init__

Method __init__

src/openai/_base_client.py:1422–1426  ·  view source on GitHub ↗
(self, **kwargs: Any)

Source from the content-addressed store, hash-verified

1420
1421class _DefaultAsyncHttpxClient(httpx.AsyncClient):
1422 def __init__(self, **kwargs: Any) -> None:
1423 kwargs.setdefault("timeout", DEFAULT_TIMEOUT)
1424 kwargs.setdefault("limits", DEFAULT_CONNECTION_LIMITS)
1425 kwargs.setdefault("follow_redirects", True)
1426 super().__init__(**kwargs)
1427
1428
1429try:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected