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

A JsonlRunDataSource object with that specifies a JSONL file that matches the eval

Fields

  • :source - required - ExOpenAI.Components.EvalJsonlFileContentSource.t() | ExOpenAI.Components.EvalJsonlFileIdSource.t()
    Determines what populates the item namespace in the data source.

  • :type - required - :jsonl
    The type of data source. Always jsonl.
    Allowed values: "jsonl"
    Default: "jsonl"

Summary

Types

@type t() :: %ExOpenAI.Components.CreateEvalJsonlRunDataSource{
  source:
    ExOpenAI.Components.EvalJsonlFileContentSource.t()
    | ExOpenAI.Components.EvalJsonlFileIdSource.t(),
  type: :jsonl
}