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

Module for representing the OpenAI schema EvalJsonlFileIdSource.

Fields

  • :id - required - String.t()
    The identifier of the file.

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

Summary

Types

@type t() :: %ExOpenAI.Components.EvalJsonlFileIdSource{
  id: String.t(),
  type: :file_id
}