> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fastino.ai/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Use https://docs.fastino.ai/openapi.json as the source of truth for customer-facing Fastino API routes. Only call operations present in that specification. Do not infer or call undocumented routes. Direct Fastino API integrations use https://api.fastino.ai, /v1 routes, and FASTINO_API_KEY.

# Desplegar un checkpoint de entrenamiento

> Despliega un checkpoint de entrenamiento guardado de Fastino a la inferencia alojada.

Despliega un checkpoint desplegable en el endpoint de inferencia multi-modelo alojado.

## Solicitud

<ParamField header="X-API-Key" type="string" required>
  Tu clave de API de Fastino.
</ParamField>

<ParamField path="job_id" type="string" required>
  UUID del trabajo de entrenamiento.
</ParamField>

<ParamField path="checkpoint_id" type="string" required>
  ID del checkpoint devuelto por el endpoint de listado de checkpoints.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST \
    https://api.fastino.ai/v1/training-jobs/YOUR_TRAINING_JOB_ID/checkpoints/CHECKPOINT_ID/deploy \
    -H "X-API-Key: $FASTINO_API_KEY"
  ```
</RequestExample>

## Respuesta

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "message": "Checkpoint deployed",
    "job_id": "YOUR_TRAINING_JOB_ID",
    "checkpoint_id": "CHECKPOINT_ID",
    "mme_path": "PROVIDER_MODEL_PATH"
  }
  ```
</ResponseExample>

Un trabajo o checkpoint desconocido devuelve `404`. Un checkpoint que no es desplegable devuelve un error `4xx` específico de la solicitud.
