action openai_list_fine_tunes { label: "List your organization's fine-tuning jobs\n" provider: openai method: GET path: "/fine-tunes" encoding: json output: { type: "object" required: ["data", "object"] properties: { data: { type: "array" items: { required: ["id", "object", "created_at", "updated_at", "model", "fine_tuned_model", "organization_id", "status", "hyperparams", "training_files", "validation_files", "result_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 } } } } } object: { type: "string" } } } }