GET
/
api
/
llm
/
training_job
/
list
curl --request GET \
  --url https://training-suite.simplismart.ai/api/llm/training_job/list/ \
  --header 'Authorization: Bearer <token>'
{
  "jobs": [
    {
      "request_id": "<string>",
      "experiment_name": "<string>",
      "status": "QUEUED",
      "created_at": "2023-11-07T05:31:56Z",
      "model_type": "<string>",
      "base_model": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT token for authentication

Headers

Authorization
string
required

The authorization token used to authenticate the request. It must be provided in the "Bearer {token}" format.

Query Parameters

org_id
string
required

The unique identifier of the organization for which the training jobs are being retrieved.

Response

200
application/json
Successful response containing a list of training jobs.
jobs
object[]