Skip to main content
PATCH
/
api
/
repos
/
{namespace}
/
{repo_name}
/
fine_tunes
/
{id}
Update a fine-tune job
curl --request PATCH \
  --url https://dev.hub.oxen.ai/api/repos/{namespace}/{repo_name}/fine_tunes/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "fine_tune": {
    "base_model": "<string>",
    "created_at": "<string>",
    "id": "<string>",
    "name": "<string>",
    "status": "<string>",
    "updated_at": "<string>"
  },
  "status": "<string>",
  "status_message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Fine-tune ID

Body

application/json

Fine-tune update request

Subset of fine-tune fields to update

Response

Updated fine-tune response

Standard wrapper for fine-tune responses.

fine_tune
FineTune · object

Fine-tune job resource

status
string

High-level status string (for example, 'success').

status_message
string

Human-readable status message (for example, 'resource_found').