List fine tuning jobs
Retrieve a list of all fine tuning jobs created by the user.
GET
JavaScript
JavaScript
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Check out our upcoming events and meetups! View events →
Retrieve a list of all fine tuning jobs created by the user.
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);{
"data": [
{
"id": "<string>",
"created_at": 123,
"finished_at": 123,
"hyperparameters": {
"n_epochs": 3
},
"model": "<string>",
"organization_id": "<string>",
"trained_tokens": 123,
"training_file": "<string>"
}
]
}Was this page helpful?
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);{
"data": [
{
"id": "<string>",
"created_at": 123,
"finished_at": 123,
"hyperparameters": {
"n_epochs": 3
},
"model": "<string>",
"organization_id": "<string>",
"trained_tokens": 123,
"training_file": "<string>"
}
]
}