print_top_p Subroutine

private impure elemental subroutine print_top_p(this)

Type Bound

ChatCompletion

Arguments

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

Source Code

   elemental impure subroutine print_top_p(this)
      class(ChatCompletion), intent(inout) :: this
      print "('top_p: ',F3.1)", this%top_p
   end subroutine print_top_p