action spoonacular_quick_answer { label: "Quick Answer" description: "Answer a nutrition related natural language question." provider: spoonacular method: GET path: "/recipes/quickAnswer" encoding: json input: { type: "object" properties: { q: { type: "string" } } required: ["q"] additionalProperties: false } output: { type: "object" required: ["answer", "image"] properties: { answer: { type: "string" } image: { type: "string" } } } }