GET
/
api
/
v1
/
organizations
/
{organization_id}
/
jobs
{
  "data": [
    {
      "base_model": "<string>",
      "completed_at": "2023-11-07T05:31:56Z",
      "dataset": {
        "answer_column": "<string>",
        "id": "<string>",
        "prompt_column": "<string>"
      },
      "hyperparameters": {
        "batch_size": 123,
        "best_checkpoints": true,
        "evaluation_epochs": 123,
        "learning_rate": 123,
        "lora": {
          "alpha": 123,
          "dropout": 123,
          "enabled": true,
          "r": 123,
          "trainable_modules": [
            "<string>"
          ]
        },
        "n_epochs": 123,
        "warmup_epochs": 123,
        "weight_decay": 123
      },
      "id": "<string>",
      "name": "<string>",
      "started_at": "2023-11-07T05:31:56Z",
      "status": "queued"
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication. Allowed headers -- Authorization: Bearer <access_token>

Path Parameters

organization_id
string
required

Query Parameters

offset
integer
default:0

The offset of objects to skip before starting to collect the result set.

Required range: x >= 0
limit
integer
default:10

A limit on the number of objects to be returned. Limit can range between 1 and 1000, and the default is 10.

Required range: 1 <= x <= 1000
pagination
boolean
default:true

A flag to toggle the pagination feature. When set to false, all results are returned in a single response. The default is true.

status
enum<string>

A filter on the list, based on the object status field.

Available options:
queued,
starting,
running,
completed,
failed,
cancelled

Response

200
application/json

Successful response.

The response is of type object.