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

Module for representing the OpenAI schema CreateEvalRunRequest.

Fields

  • :data_source - required - map()
    Details about the run's data source.

  • :metadata - optional - ExOpenAI.Components.Metadata.t()

  • :name - optional - String.t()
    The name of the run.

Summary

Types

@type t() :: %ExOpenAI.Components.CreateEvalRunRequest{
  data_source: map(),
  metadata: ExOpenAI.Components.Metadata.t() | nil,
  name: String.t() | nil
}