action openai_list_models { label: "Lists the currently available models, and provides basic information about each one such as the owner and availability." provider: openai method: GET path: "/models" encoding: json output: { type: "object" required: ["data", "object"] properties: { data: { type: "array" items: { required: ["id", "object", "created", "owned_by"] properties: { created: { type: "integer" } id: { type: "string" } object: { type: "string" } owned_by: { type: "string" } } } } object: { type: "string" } } } }