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

interface Error {
    code: string;
    message: string;
    param: null | string;
}

Properties

Properties

code: string

A machine-readable error code.

message: string

A human-readable error message.

param: null | string

The parameter that was invalid, usually training_file or validation_file. This field will be null if the failure was not parameter-specific.