in hfendpoints-openai/src/audio/transcription.rs [245:253]
fn into_response(self) -> Response {
match self {
TranscriptionResponse::Json(transcription) => Json::from(transcription).into_response(),
TranscriptionResponse::Text(text) => text.into_response(),
TranscriptionResponse::VerboseJson(transcription) => {
Json::from(transcription).into_response()
}
}
}