action openai_delete_model { label: "Delete a fine-tuned model. You must have the Owner role in your organization." provider: openai method: DELETE path: "/models/{model}" encoding: json input: { type: "object" properties: { model: { type: "string" } } required: ["model"] additionalProperties: false } output: { type: "object" required: ["deleted", "id", "object"] properties: { deleted: { type: "boolean" } id: { type: "string" } object: { type: "string" } } } }