The limits that are applied for the model, for all the plans.

interface ModelLimits {
    max_sequence_length?: number;
    training_data_max_records?: number;
}

Properties

max_sequence_length?: number

This is the maximum allowed value for the number of tokens in the input prompt plus the number of tokens in the output generated by the model.

training_data_max_records?: number

This is the maximum number of records that can be accepted when training this model.