Skip to content

Files

Latest commit

 

History

History
23 lines (17 loc) · 3.22 KB

finetuningjoberror.md

File metadata and controls

23 lines (17 loc) · 3.22 KB

FineTuningJobError

For fine-tuning jobs that have failed, this will contain more information on the cause of the failure.

Example Usage

import { FineTuningJobError } from "argot-open-ai/models/components";

let value: FineTuningJobError = {
  code: "<value>",
  message: "<value>",
  param: "<value>",
};

Fields

Field Type Required Description
code string ✔️ A machine-readable error code.
message string ✔️ A human-readable error message.
param string ✔️ The parameter that was invalid, usually training_file or validation_file. This field will be null if the failure was not parameter-specific.