action openai_retrieve_file { label: "Returns information about a specific file." provider: openai method: GET path: "/files/{file_id}" encoding: json input: { type: "object" properties: { file_id: { type: "string" } } required: ["file_id"] additionalProperties: false } output: { required: ["bytes", "created_at", "filename", "id", "object", "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" } } } }