action webflow_get_models_model_id_trainings { label: "get_models_modelId_trainings" provider: webflow method: GET path: "/models/{modelId}/trainings" encoding: json input: { type: "object" properties: { maxResults: { type: "string" } modelId: { type: "string" } nextToken: { type: "string" } status: { type: "string" } } required: ["modelId"] additionalProperties: false } output: { type: "object" required: ["nextToken", "trainings"] properties: { nextToken: { type: "string" } status: { type: "array" items: { type: "string" enum: ["waiting-for-approval", "pending", "running", "succeeded", "failed", "cancelled"] } } trainings: { type: "array" items: { type: "object" required: ["createdBy", "createdTime", "dataBundleIds", "description", "evaluation", "gpuHours", "instanceType", "metadata", "modelId", "name", "status", "trainingId", "updatedBy", "updatedTime"] properties: { createdBy: { type: "string" } createdTime: { type: "string" } dataBundleIds: { type: "array" items: { type: "string" } } dataScientistAssistance: { type: "boolean" } deploymentEnvironmentId: { type: "string" } description: { type: "string" } evaluation: { type: "object" } gpuHours: { type: "number" } instanceType: { type: "string" enum: ["small-gpu", "medium-gpu", "large-gpu"] } metadata: { type: "object" } modelId: { type: "string" } name: { type: "string" } status: { type: "string" enum: ["waiting-for-approval", "pending", "running", "succeeded", "failed", "cancelled"] } trainingId: { type: "string" } updatedBy: { type: "string" } updatedTime: { type: "string" } warmStartConfig: { type: "object" } } additionalProperties: false } } } additionalProperties: false } }