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

A text output from the model.

Fields

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

  • :type - required - :output_text
    The type of the output text. Always output_text.
    Allowed values: "output_text"

Summary

Types

@type t() :: %ExOpenAI.Components.EvalItemContentOutputText{
  text: String.t(),
  type: :output_text
}