> ## 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.

# 部署训练检查点

> 将已保存的 Fastino 训练检查点部署到托管推理服务。

`POST /v1/training-jobs/{job_id}/checkpoints/{checkpoint_id}/deploy`

将一个可部署的检查点部署到托管的多模型推理端点。

## 请求

<ParamField header="X-API-Key" type="string" required>
  您的 Fastino API 密钥。
</ParamField>

<ParamField path="job_id" type="string" required>
  训练任务 UUID。
</ParamField>

<ParamField path="checkpoint_id" type="string" required>
  由检查点列表端点返回的检查点 ID。
</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>

## 响应

<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>

未知的任务或检查点返回 `404`。不可部署的检查点返回请求相关的 `4xx` 错误。
