print_max_tokens Subroutine

private impure elemental subroutine print_max_tokens(this)

Type Bound

ChatCompletion

Arguments

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

Source Code

   elemental impure subroutine print_max_tokens(this)
      class(ChatCompletion), intent(inout) :: this
      print "('max tokens: ',I4)", this%max_tokens
   end subroutine print_max_tokens