From db1a7335f17bc916f83da3596df6175d40d3862b Mon Sep 17 00:00:00 2001 From: Annie Luc Date: Mon, 22 Dec 2025 08:52:45 -0800 Subject: [PATCH] chore: Update Interactions base client initialization PiperOrigin-RevId: 847781333 --- google/genai/_interactions/_base_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/genai/_interactions/_base_client.py b/google/genai/_interactions/_base_client.py index a11e3a92b..c507c560c 100644 --- a/google/genai/_interactions/_base_client.py +++ b/google/genai/_interactions/_base_client.py @@ -1798,7 +1798,7 @@ async def patch( options: RequestOptions = {}, ) -> ResponseT: opts = FinalRequestOptions.construct( - method="patch", url=path, json_data=body, files=to_httpx_files(files), **options + method="patch", url=path, json_data=body, files=await async_to_httpx_files(files), **options ) return await self.request(cast_to, opts)