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

Method _send_request

src/openai/_base_client.py:1564–1571  ·  view source on GitHub ↗
(
        self,
        request: httpx.Request,
        *,
        stream: bool,
        **kwargs: Unpack[HttpxSendArgs],
    )

Source from the content-addressed store, hash-verified

1562 return None
1563
1564 async def _send_request(
1565 self,
1566 request: httpx.Request,
1567 *,
1568 stream: bool,
1569 **kwargs: Unpack[HttpxSendArgs],
1570 ) -> httpx.Response:
1571 return await self._client.send(request, stream=stream, **kwargs)
1572
1573 @overload
1574 async def request(

Callers 1

requestMethod · 0.95

Calls 1

sendMethod · 0.45

Tested by

no test coverage detected