Skip to main content
POST
Requires version 1.1.5 or later of the Archetype platform.

Overview

Resumes a paused or failed fine-tuning job, continuing from the most recent checkpoint.

Request

string
required
The ID of the fine-tuning job to resume. This is a TypeID-encoded identifier with the FineTuningJobId prefix.

Response

Returns a description of the fine-tuning job after resuming it.
string
required
The object type. Always fine_tuning.job.
string
required
The unique identifier of the fine-tuning job.
string
required
The human-readable name supplied when the job was created.
string
required
The base model being fine-tuned.
integer
required
The Unix timestamp (in seconds) at which the job was created.
string
required
The organization that owns the job.
string
required
The job’s current lifecycle stage. One of PENDING, ADMITTED, RUNNING, COMPLETED, FAILED, PREEMPTED, CANCELLED, PAUSED, INTERRUPTED.
null
Always null for resumed jobs. This property does not take on a value until the job’s status is COMPLETED. v1.1.5+
array
required
Identifiers of the files used to train the model.
array
required
Identifiers of the files used to evaluate the model during training.
array
required
Failure details when the job has failed, as the platform error envelope (a list of {code, message, suggestion, error_uid}). Empty while the job is queued or running, or on success.
string
The checkpoint ID of the checkpoint from which the job was started (not the checkpoint from which the job was resumed), or null if it trained from the base model.
string
The name of the model produced by the job, available once training has succeeded; null until then.
integer
The Unix timestamp (in seconds) at which the job finished, or null if it is not yet complete.
string
For a COMPLETED job, this indicates whether it succeeded fully (SUCCESS), partially (PARTIAL), or produced nothing (FAILED). This is null for any non-completed status.
integer
The random seed used for the job.
string
The suffix supplied on the request, applied to the fine-tuned model’s name.