(raw_response: Response)
| 3020 | tools = _make_tools(tools) |
| 3021 | |
| 3022 | def parser(raw_response: Response) -> ParsedResponse[TextFormatT]: |
| 3023 | return parse_response( |
| 3024 | input_tools=tools, |
| 3025 | text_format=text_format, |
| 3026 | response=raw_response, |
| 3027 | ) |
| 3028 | |
| 3029 | return await self._post( |
| 3030 | "/responses", |
nothing calls this directly
no test coverage detected