print_assistant_response Subroutine

private impure elemental subroutine print_assistant_response(this)

Uses

    • face
  • proc~~print_assistant_response~~UsesGraph proc~print_assistant_response foropenai_Transcription::Transcription%print_assistant_response face face proc~print_assistant_response->face

Type Bound

Transcription

Arguments

Type IntentOptional Attributes Name
class(Transcription), intent(inout) :: this

Calls

proc~~print_assistant_response~~CallsGraph proc~print_assistant_response foropenai_Transcription::Transcription%print_assistant_response colorize colorize proc~print_assistant_response->colorize

Called by

proc~~print_assistant_response~~CalledByGraph proc~print_assistant_response foropenai_Transcription::Transcription%print_assistant_response program~test_transcription test_Transcription program~test_transcription->proc~print_assistant_response

Source Code

   elemental impure subroutine print_assistant_response(this)
      use face, only: colorize
      class(Transcription), intent(inout) :: this
      print "(A,': ',A)", colorize("Whisper", color_bg='blue'), this%assistant_response
   end subroutine print_assistant_response