View Source ExOpenAI.Components.FineTunePreferenceRequestInput (ex_openai.ex v1.8.0)

Schema representing a FineTunePreferenceRequestInput within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.FineTunePreferenceRequestInput{
  input:
    %{
      messages: [map()],
      parallel_tool_calls: ExOpenAI.Components.ParallelToolCalls.t(),
      tools: [ExOpenAI.Components.ChatCompletionTool.t()]
    }
    | nil,
  non_preferred_completion: [map()] | nil,
  preferred_completion: [map()] | nil
}