@@ -100,7 +100,7 @@ async def _echo_a2a_echo(
100100 thread_id : str ,
101101 ) -> EchoResponseWithHistory :
102102 async with httpx .AsyncClient () as httpx_client :
103- client = await self .obtain_a2a_client (
103+ client , _ = await self .obtain_a2a_client (
104104 httpx_client = httpx_client ,
105105 base_url = self .echo_base_url ,
106106 )
@@ -155,7 +155,7 @@ async def _echo_a2a_history(
155155 thread_id : str ,
156156 ) -> List [EchoResponse ]:
157157 async with httpx .AsyncClient () as httpx_client :
158- client = await self .obtain_a2a_client (
158+ client , _ = await self .obtain_a2a_client (
159159 httpx_client = httpx_client ,
160160 base_url = self .echo_base_url ,
161161 )
@@ -207,7 +207,7 @@ async def _echo_a2a_delete_history(
207207 thread_id : str ,
208208 ) -> str :
209209 async with httpx .AsyncClient () as httpx_client :
210- client = await self .obtain_a2a_client (
210+ client , _ = await self .obtain_a2a_client (
211211 httpx_client = httpx_client ,
212212 base_url = self .echo_base_url ,
213213 )
@@ -254,7 +254,7 @@ async def _mhqa_chat(
254254 thread_id : str ,
255255 ) -> MHQAResponse :
256256 async with httpx .AsyncClient () as httpx_client :
257- client = await self .obtain_a2a_client (
257+ client , _ = await self .obtain_a2a_client (
258258 httpx_client = httpx_client ,
259259 base_url = self .mhqa_base_url ,
260260 )
@@ -304,7 +304,7 @@ async def _mhqa_get_history(
304304 thread_id : str ,
305305 ) -> List [MHQAResponse ]:
306306 async with httpx .AsyncClient () as httpx_client :
307- client = await self .obtain_a2a_client (
307+ client , _ = await self .obtain_a2a_client (
308308 httpx_client = httpx_client ,
309309 base_url = self .mhqa_base_url ,
310310 )
@@ -354,7 +354,7 @@ async def _mhqa_delete_history(
354354 thread_id : str ,
355355 ) -> str :
356356 async with httpx .AsyncClient () as httpx_client :
357- client = await self .obtain_a2a_client (
357+ client , _ = await self .obtain_a2a_client (
358358 httpx_client = httpx_client ,
359359 base_url = self .mhqa_base_url ,
360360 )
0 commit comments