action openai_retrieve_model { label: "Retrieves a model instance, providing basic information about the model such as the owner and permissioning." provider: openai method: GET path: "/models/{model}" encoding: json input: { type: "object" properties: { model: { type: "string" } } required: ["model"] additionalProperties: false } output: { required: ["created", "id", "object", "owned_by"] properties: { created: { type: "integer" } id: { type: "string" } object: { type: "string" } owned_by: { type: "string" } } } }