v1

latestOpenAPI 3.0.3raw.githubusercontent.com2025-07-15155231.4 KB

Load model weights

Loads model weights from disk

post/api/v1/load_weights

Request body

type'load_weights'
model_idstring uuid required
pathstring required

A tinker URI for model weights at a specific step

Example request

{
  "model_id": "123e4567-e89b-12d3-a456-426614174000",
  "path": "tinker://model-id/weights/step-0123"
}

Response

API future for weight loading completion

request_idstring uuid required
model_idstring uuid

Example response

{
  "request_id": "123e4567-e89b-12d3-a456-426614174000",
  "model_id": "123e4567-e89b-12d3-a456-426614174000"
}