Get a fine tuning job
GET/ai/fine_tuning/jobs/:job_id
Retrieve a fine tuning job by job_id
.
Request
Path Parameters
job_id Job Idrequired
Responses
200: Successful Response
- application/json
422: Validation Error
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/ai/fine_tuning/jobs/:job_id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"id": "string",
"created_at": 0,
"finished_at": 0,
"hyperparameters": {
"n_epochs": 3
},
"model": "string",
"organization_id": "string",
"status": "queued",
"trained_tokens": 0,
"training_file": "string"
}
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}