Copybara import of the project:

--
3fb305691e0ecc8b75d56d0b9ef43c97cef8f773 by ammmr <m.hoshii777@gmail.com>:

fix: add missing await in runner run_live
COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/849 from ammmr:patch-missing-await-in-runner-run-live b75b5d0105f18eaa06a0d7fb7d608b05eb59b3c9
PiperOrigin-RevId: 762113004
This commit is contained in:
GenkiNoguchi 2025-05-22 13:54:00 -07:00 committed by Copybara-Service
parent 30e10c87c5
commit d3910e7b8c

View File

@ -286,7 +286,7 @@ class Runner:
stacklevel=2,
)
if not session:
session = self.session_service.get_session(
session = await self.session_service.get_session(
app_name=self.app_name, user_id=user_id, session_id=session_id
)
if not session: