(self, input: dict, request: Request)
| 9 | |
| 10 | class Message(ApiHandler): |
| 11 | async def process(self, input: dict, request: Request) -> dict | Response: |
| 12 | task, context = await self.communicate(input=input, request=request) |
| 13 | return await self.respond(task, context) |
| 14 | |
| 15 | async def respond(self, task: DeferredTask, context: AgentContext): |
| 16 | result = await task.result() # type: ignore |
nothing calls this directly
no test coverage detected