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