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

Reasoning text from the model.

Fields

  • :text - required - String.t()
    The reasoning text from the model.

  • :type - required - :reasoning_text
    The type of the reasoning text. Always reasoning_text.
    Allowed values: "reasoning_text"
    Default: "reasoning_text"

Summary

Types

@type t() :: %ExOpenAI.Components.ReasoningTextContent{
  text: String.t(),
  type: :reasoning_text
}