get_product_suggestions
Find food product suggestions tailored to dietary preferences like vegan, gluten-free, or organic. Filter by category, Nutri-Score, and max results to make informed food choices.
Instructions
Get product suggestions based on dietary preferences or restrictions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Product category to search within | |
dietary_preferences | No | Dietary preferences or restrictions | |
max_results | No | Maximum number of suggestions (default: 10) | |
min_nutriscore | No | Minimum Nutri-Score grade (a, b, c, d, e) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Product category to search within",
"type": "string"
},
"dietary_preferences": {
"description": "Dietary preferences or restrictions",
"items": {
"enum": [
"vegan",
"vegetarian",
"gluten-free",
"organic",
"low-fat",
"low-sugar",
"high-protein"
],
"type": "string"
},
"type": "array"
},
"max_results": {
"description": "Maximum number of suggestions (default: 10)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"min_nutriscore": {
"description": "Minimum Nutri-Score grade (a, b, c, d, e)",
"enum": [
"a",
"b",
"c",
"d",
"e"
],
"type": "string"
}
},
"required": [
"category"
],
"type": "object"
}