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

Method __init__

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

Source from the content-addressed store, hash-verified

833
834class _DefaultHttpxClient(httpx.Client):
835 def __init__(self, **kwargs: Any) -> None:
836 kwargs.setdefault("timeout", DEFAULT_TIMEOUT)
837 kwargs.setdefault("limits", DEFAULT_CONNECTION_LIMITS)
838 kwargs.setdefault("follow_redirects", True)
839 super().__init__(**kwargs)
840
841
842if TYPE_CHECKING:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected