Training
List LoRA Training Task
GET
/
v3
/
training
This API retrieves information about all the user’s training tasks.
Request Headers
Enum: application/json
Bearer authentication format, for example: Bearer {{API Key}}.
Query Parameters
The number of model records to query per request, within the range (0, 100].
The pagination.cursor parameter specifies the record from which to start returning results. If it is empty, the results will start from the beginning. Generally, the content of the next page is obtained by passing the next_cursor field value from the response packet.
Response
Example
In this step, we can obtain all the information about trained models.
Response:
task_name
: The name of the training task.task_id
: The unique identifier of the training task, which can be used to query the training status and results.task_type
: The type of the training task.task_status
: The status of the training task. Enum:UNKNOWN
,QUEUING
,TRAINING
,SUCCESS
,CANCELED
,FAILED
.created_at
: The timestamp of when the training task was created.models
: The trained models.model_name
: The name of the model.model_status
: The status of the model. Enum:DEPLOYING
,SERVING
.
Was this page helpful?