import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const jobs = await client.ai.fineTuning.jobs.list();
console.log(jobs.data);
Retrieve a list of all fine tuning jobs created by the user.
GET
/
ai
/
fine_tuning
/
jobs
JavaScript
Copy
Ask AI
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const jobs = await client.ai.fineTuning.jobs.list();
console.log(jobs.data);