View Source ExOpenAI.Components.CreateThreadAndRunRequest (ex_openai.ex v1.5.1)

Schema representing a CreateThreadAndRunRequest within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.CreateThreadAndRunRequest{
  assistant_id: String.t(),
  instructions: String.t() | nil,
  metadata: map() | nil,
  model: String.t() | nil,
  thread: ExOpenAI.Components.CreateThreadRequest.t() | nil,
  tools: [map()] | nil
}