mirror of
https://github.com/encounter/adk-python.git
synced 2026-07-09 18:19:28 -07:00
fix: Change pass to yield in BaseLlmConnection.receive
PiperOrigin-RevId: 835268090
This commit is contained in:
committed by
Copybara-Service
parent
59eba96ea4
commit
11df1e886d
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user