print_assistant_response Subroutine

private impure elemental subroutine print_assistant_response(this)

Uses

    • face
  • proc~~print_assistant_response~4~~UsesGraph proc~print_assistant_response~4 foropenai_Translation::Translation%print_assistant_response face face proc~print_assistant_response~4->face

Type Bound

Translation

Arguments

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

Calls

proc~~print_assistant_response~4~~CallsGraph proc~print_assistant_response~4 foropenai_Translation::Translation%print_assistant_response colorize colorize proc~print_assistant_response~4->colorize

Called by

proc~~print_assistant_response~4~~CalledByGraph proc~print_assistant_response~4 foropenai_Translation::Translation%print_assistant_response program~test_translation test_Translation program~test_translation->proc~print_assistant_response~4

Source Code

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