defmodule Hoge do def test do msgs = [ %ExOpenAI.Components.ChatCompletionRequestMessage{ role: :user, content: "Hello!" }, %ExOpenAI.Components.ChatCompletionRequestMessage{ role: :assistant, content: "What's up?" }, %ExOpenAI.Components.ChatCompletionRequestMessage{ role: :user, content: "What ist the color of the sky?" } ] {:ok, res} = ExOpenAI.Chat.create_chat_completion(msgs, :"gpt-3.5-turbo-16k") end end