Skip to main content
DELETE
/
api
/
repos
/
{namespace}
/
{repo_name}
/
fine_tunes
/
{id}
Delete a fine-tune job
curl --request DELETE \
  --url https://dev.hub.oxen.ai/api/repos/{namespace}/{repo_name}/fine_tunes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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

Response

Deleted 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').