Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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