Skip to main content
GET
/
ai
/
fine_tuning
/
jobs
JavaScript
import Telnyx from 'telnyx';

const client = new Telnyx({
  apiKey: 'My API Key',
});

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>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

Successful Response

data
FineTuningJob · object[]
required