View Source ExOpenAI.Components.Error (ex_openai.ex v2.0.0-beta2)

Module for representing the OpenAI schema Error.

Fields

  • :code - required - String.t() | any()

  • :message - required - String.t()

  • :param - required - String.t() | any()

  • :type - required - String.t()

Summary

Types

@type t() :: %ExOpenAI.Components.Error{
  code: String.t() | any(),
  message: String.t(),
  param: String.t() | any(),
  type: String.t()
}