print_frequency_penalty Subroutine

private impure elemental subroutine print_frequency_penalty(this)

Type Bound

ChatCompletion

Arguments

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

Source Code

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