View Source ExOpenAI.Components.ThreadObject (ex_openai.ex v1.7.0)

Schema representing a ThreadObject within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.ThreadObject{
  created_at: integer(),
  id: String.t(),
  metadata: map(),
  object: :thread,
  tool_resources: %{
    code_interpreter: %{file_ids: [String.t()]},
    file_search: %{vector_store_ids: [String.t()]}
  }
}