find_recipe_standards
Retrieve standardized recipes and preparation guidelines for specific dishes from food service documentation.
Instructions
Find standardized recipes and preparation methods for specific dishes
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cuisine_type | No | ||
dish_name | Yes | Name of the dish to find recipe standards for |
Input Schema (JSON Schema)
{
"properties": {
"cuisine_type": {
"description": "",
"type": "string"
},
"dish_name": {
"description": "Name of the dish to find recipe standards for",
"type": "string"
}
},
"required": [
"dish_name"
],
"type": "object"
}