Skip to content

Lora Training Checkpoints

GET
/api/lora-training/checkpoints
curl --request GET \
--url https://example.com/api/lora-training/checkpoints \
--header 'Authorization: Bearer <token>'

List LoRA checkpoint safetensors available on the VPS, optionally filtered by job.

job_name
Any of:
string

Successful Response

Media typeapplication/json
LoraCheckpointsResponse
object
ok
required
Ok
boolean
job_name
required
Job Name
string
checkpoints
required
Checkpoints
Array<object>
LoraCheckpoint
object
name
required
Name
string
step
Any of:
integer
path
required
Path
string
size_bytes
required
Size Bytes
integer
modified_at
required
Modified At
string
count
required
Count
integer
updated_at
required
Updated At
string
Examplegenerated
{
"ok": true,
"job_name": "example",
"checkpoints": [
{
"name": "example",
"step": 1,
"path": "example",
"size_bytes": 1,
"modified_at": "example"
}
],
"count": 1,
"updated_at": "example"
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}