print_temperature Subroutine

private impure elemental subroutine print_temperature(this)

Type Bound

ChatCompletion

Arguments

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

Source Code

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