Skip to content
2 changes: 1 addition & 1 deletion google/genai/_api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,7 @@ async def async_request_streamed(
http_method, path, request_dict, http_options
)

response = await self._async_request(http_request=http_request, stream=True)
response = await self._async_request(http_request=http_request, http_options=http_options, stream=True)

async def async_generator(): # type: ignore[no-untyped-def]
async for chunk in response:
Expand Down
Loading