set_response_format Subroutine

private pure elemental subroutine set_response_format(this, response_format)

Type Bound

Transcription

Arguments

Type IntentOptional Attributes Name
class(Transcription), intent(inout) :: this
character(len=*), intent(in) :: response_format

Called by

proc~~set_response_format~~CalledByGraph proc~set_response_format foropenai_Transcription::Transcription%set_response_format proc~set_transcription_data foropenai_Transcription::Transcription%set_Transcription_data proc~set_transcription_data->proc~set_response_format program~test_transcription test_Transcription program~test_transcription->proc~set_transcription_data

Source Code

   elemental pure subroutine set_response_format(this, response_format)
      class(Transcription), intent(inout) :: this
      character(len=*),     intent(in)    :: response_format
      this%response_format = trim(response_format)
   end subroutine set_response_format