(raw_response: Response)
| 1269 | tools = _make_tools(tools) |
| 1270 | |
| 1271 | def parser(raw_response: Response) -> ParsedResponse[TextFormatT]: |
| 1272 | return parse_response( |
| 1273 | input_tools=tools, |
| 1274 | text_format=text_format, |
| 1275 | response=raw_response, |
| 1276 | ) |
| 1277 | |
| 1278 | return self._post( |
| 1279 | "/responses", |
nothing calls this directly
no test coverage detected