set_response_format Subroutine

private pure elemental subroutine set_response_format(this, response_format)

Type Bound

Translation

Arguments

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

Called by

proc~~set_response_format~3~~CalledByGraph proc~set_response_format~3 foropenai_Translation::Translation%set_response_format proc~set_translation_data foropenai_Translation::Translation%set_Translation_data proc~set_translation_data->proc~set_response_format~3 program~test_translation test_Translation program~test_translation->proc~set_translation_data

Source Code

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