(
self, invocation_context: InvocationContext
)
| 58 | self.parent_agent = parent_agent |
| 59 | |
| 60 | async def _run_async_impl( |
| 61 | self, invocation_context: InvocationContext |
| 62 | ) -> AsyncGenerator[Event, None]: |
| 63 | yield Event( |
| 64 | invocation_id=invocation_context.invocation_id, |
| 65 | author=self.name, |
| 66 | content=types.Content( |
| 67 | role="model", parts=[types.Part(text="Test response")] |
| 68 | ), |
| 69 | ) |
| 70 | |
| 71 | |
| 72 | class MockLiveAgent(BaseAgent): |