Input Tokens
0
Output Tokens
0
Duration
0
Cost
0
Context
Input
Analyze the following cooking instructions and return a structured response following these criteria:
1. Identify all ingredients used in the recipe, even if optional
2. Classify each ingredient into one of three categories: 'main', 'side', or 'sauce'
3. 'Main' includes core components of the recipe; 'side' includes extras served alongside or supporting ingredients in the preparation; 'sauce' includes only sauces not condiments like salt
4. Use generic names when appropriate (e.g., any bread = 'bread')
Expected output
{
"main": [
"mince",
"bacon",
"cheese",
"bread",
"lettuce",
"tomato",
"onion"
],
"side": [
"potatoes",
"oil",
"salt",
"pepper"
],
"sauce": [
"mustard",
"ketchup",
"mayonnaise"
]
}
Model output
{
"main": [
"mince",
"bacon",
"cheese",
"bread",
"lettuce",
"tomato",
"onion"
],
"side": [
"potatoes",
"oil",
"water",
"salt"
],
"sauce": [
"ketchup",
"mayonnaise"
]
}