(
self, invocation_context: InvocationContext
)
| 102 | self.parent_agent = parent_agent |
| 103 | |
| 104 | async def _run_async_impl( |
| 105 | self, invocation_context: InvocationContext |
| 106 | ) -> AsyncGenerator[Event, None]: |
| 107 | yield Event( |
| 108 | invocation_id=invocation_context.invocation_id, |
| 109 | author=self.name, |
| 110 | content=types.Content( |
| 111 | role="model", parts=[types.Part(text="Test LLM response")] |
| 112 | ), |
| 113 | ) |
| 114 | |
| 115 | |
| 116 | class MockAgentWithMetadata(BaseAgent): |