load_user_name Subroutine

private impure elemental subroutine load_user_name(this)

Uses

    • json_module
  • proc~~load_user_name~~UsesGraph proc~load_user_name foropenai_ChatCompletion::ChatCompletion%load_user_name json_module json_module proc~load_user_name->json_module

Type Bound

ChatCompletion

Arguments

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

Calls

proc~~load_user_name~~CallsGraph proc~load_user_name foropenai_ChatCompletion::ChatCompletion%load_user_name destroy destroy proc~load_user_name->destroy get get proc~load_user_name->get initialize initialize proc~load_user_name->initialize load_file load_file proc~load_user_name->load_file

Called by

proc~~load_user_name~~CalledByGraph proc~load_user_name foropenai_ChatCompletion::ChatCompletion%load_user_name proc~load_chatcompletion_data foropenai_ChatCompletion::ChatCompletion%load_ChatCompletion_data proc~load_chatcompletion_data->proc~load_user_name proc~set_chatcompletion_data foropenai_ChatCompletion::ChatCompletion%set_ChatCompletion_data proc~set_chatcompletion_data->proc~load_chatcompletion_data 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 impure subroutine load_user_name(this)
      use json_module, only: json_file
      class(ChatCompletion), intent(inout) :: this
      type(json_file)                      :: json
      call json%initialize()
      call json%load_file(trim(this%file_name))
      call json%get("ChatCompletion.user_name", this%user_name)
      call json%destroy()
   end subroutine load_user_name