model_status
Check the status of model import or export operations to monitor progress and ensure completion in AI fine-tuning workflows.
Instructions
Check the status of a model import or export operation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model_id | Yes | Model ID (UUID) |
Implementation Reference
- src/client.ts:100-102 (handler)The getUserModelStatus method in the client class performs the actual API request to retrieve the model status.
async getUserModelStatus(modelId: string): Promise<any> { return this.request("GET", `/api/v1/user_models/${modelId}/status`); } - src/mcp.ts:355-364 (registration)The registration of the 'model_status' tool in the MCP server definitions, including its input schema.
name: "model_status", description: "Check the status of a model import or export operation.", inputSchema: { type: "object" as const, properties: { model_id: { type: "string", description: "Model ID (UUID)" }, }, required: ["model_id"], },