action openai_cancel_fine_tune { label: "Immediately cancel a fine-tune job.\n" provider: openai method: POST path: "/fine-tunes/{fine_tune_id}/cancel" encoding: json input: { type: "object" properties: { fine_tune_id: { type: "string" } } required: ["fine_tune_id"] additionalProperties: false } output: { required: ["created_at", "fine_tuned_model", "hyperparams", "id", "model", "object", "organization_id", "result_files", "status", "training_files", "updated_at", "validation_files"] properties: { created_at: { type: "integer" } events: { type: "array" items: { required: ["object", "created_at", "level", "message"] properties: { created_at: { type: "integer" } level: { type: "string" } message: { type: "string" } object: { type: "string" } } } } fine_tuned_model: { type: "string" } hyperparams: { type: "object" } id: { type: "string" } model: { type: "string" } object: { type: "string" } organization_id: { type: "string" } result_files: { type: "array" items: { required: ["id", "object", "bytes", "created_at", "filename", "purpose"] properties: { bytes: { type: "integer" } created_at: { type: "integer" } filename: { type: "string" } id: { type: "string" } object: { type: "string" } purpose: { type: "string" } status: { type: "string" } status_details: { type: "object" } } } } status: { type: "string" } training_files: { type: "array" items: { type: "object" additionalProperties: true } } updated_at: { type: "integer" } validation_files: { type: "array" items: { type: "object" additionalProperties: true } } } } }