Duration
8s
Input Tokens
983
Output Tokens
248
Cost
$0.00
Context
Input
Analyze the following cooking instructions and return a structured response following these criteria:
1. Return a list of all ingredients present in the recipe even if they are optional (Only ingredients, not quantities)
2. Ingredients should only be mentioned once
3. Exclude the title
Expected output
{
"ingredients": [
"basmati rice",
"bay leaf",
"chicken",
"cilantro",
"cinnamon",
"cloves",
"garam masala",
"ghee",
"ginger-garlic paste",
"green cardamom",
"lemon",
"milk",
"mint",
"oil",
"onions",
"red chili powder",
"saffron",
"salt",
"turmeric",
"water",
"yogurt"
]
}
Model output
{
"ingredients": [
"bay leaf",
"chicken",
"cilantro",
"cinnamon",
"cloves",
"garam masala",
"garlic",
"ghee",
"ginger",
"green cardamom pods",
"lemon",
"milk",
"mint",
"oil",
"onions",
"red chili powder",
"rice",
"saffron",
"salt",
"turmeric",
"yogurt"
]
}