DELETE
/
v4
/
fine-tuning-jobs
/
{fine_tuning_job_id}
import SGPClient from 'sgp';

const client = new SGPClient({
  apiKey: process.env['SGP_API_KEY'], // This is the default and can be omitted
});

async function main() {
  const genericDeleteResponse = await client.fineTuningJobs.delete('fine_tuning_job_id');

  console.log(genericDeleteResponse.count);
}

main();
{
  "success": true,
  "count": 123
}

Authorizations

x-api-key
string
header
required

Path Parameters

fine_tuning_job_id
string
required

Response

200
application/json
Successful Response
success
boolean
required
count
integer
required