set_url Subroutine

private pure elemental subroutine set_url(this, url)

Type Bound

ChatCompletion

Arguments

Type IntentOptional Attributes Name
class(ChatCompletion), intent(inout) :: this
character(len=*), intent(in) :: url

Called by

proc~~set_url~2~~CalledByGraph proc~set_url~2 foropenai_ChatCompletion::ChatCompletion%set_url proc~set_chatcompletion_data foropenai_ChatCompletion::ChatCompletion%set_ChatCompletion_data proc~set_chatcompletion_data->proc~set_url~2 proc~conversation foropenai_ChatCompletion::ChatCompletion%conversation proc~conversation->proc~set_chatcompletion_data program~test_chatcompletion test_ChatCompletion program~test_chatcompletion->proc~set_chatcompletion_data

Source Code

   elemental pure subroutine set_url(this, url)
      class(ChatCompletion), intent(inout) :: this
      character(len=*),      intent(in)    :: url
      this%url = trim(url)
   end subroutine set_url