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>",
"status": "queued",
"trained_tokens": 123,
"training_file": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
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>",
"status": "queued",
"trained_tokens": 123,
"training_file": "<string>"
}
]
}