The method used for fine-tuning.

interface Method {
    dpo?: OpenAIClient.FineTuning.Jobs.FineTuningJob.Method.Dpo;
    supervised?: OpenAIClient.FineTuning.Jobs.FineTuningJob.Method.Supervised;
    type?: "supervised" | "dpo";
}

Properties

Configuration for the DPO fine-tuning method.

Configuration for the supervised fine-tuning method.

type?: "supervised" | "dpo"

The type of method. Is either supervised or dpo.