action spoonacular_detect_food_in_text { label: "Detect Food in Text" description: "Take any text and find all mentions of food contained within it. This task is also called Named Entity Recognition (NER). In this case, the entities are foods. Either dishes, such as pizza or cheeseburger, or ingredients, such as cucumber or almonds." provider: spoonacular method: POST path: "/food/detect" encoding: form output: { type: "object" required: ["annotations"] properties: { annotations: { type: "array" items: { required: ["annotation", "image", "tag"] properties: { annotation: { type: "string" } image: { type: "string" } tag: { type: "string" } } } } } } }