POST
/
fine_tuning
/
jobs
curl --request POST \
  --url https://api.vaeroapi.com/v1/fine_tuning/jobs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "style_model": "vaero-1",
  "base_model": "general",
  "training_files": [
    "file-abc123",
    "file-abc124"
  ],
  "suffix": "custom-name"
}'
{
  "object": "fine_tuning.job",
  "id": "ftjob-abc123",
  "style_model": "vaero-1",
  "base_model": "gpt-4o",
  "created_at": 1721764800,
  "fine_tuned_model": null,
  "organization_id": "org-123",
  "status": "queued",
  "training_files": [
    "file-abc123",
    "file-abc124"
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

A fine-tuning job object.

The response is of type object.