action spoonacular_classify_cuisine { label: "Classify Cuisine" description: "Classify the recipe's cuisine." provider: spoonacular method: POST path: "/recipes/cuisine" encoding: form output: { type: "object" required: ["confidence", "cuisine", "cuisines"] properties: { confidence: { type: "number" } cuisine: { type: "string" } cuisines: { type: "array" items: { type: "string" } } } } }