fix: Change pass to yield in BaseLlmConnection.receive

PiperOrigin-RevId: 835268090
This commit is contained in:
Google Team Member
2025-11-21 10:12:19 -08:00
committed by Copybara-Service
parent 59eba96ea4
commit 11df1e886d
+2 -1
View File
@@ -72,7 +72,8 @@ class BaseLlmConnection:
Yields:
LlmResponse: The model response.
"""
pass
# We need to yield here to help type checkers infer the correct type.
yield
@abstractmethod
async def close(self):