Data Extraction

Pull structured data out of messy text — ingredients from a recipe, fields from a contract, attributes from a product description. The plumbing behind catalogue, intake, and processing pipelines.

100
Duration
13s
Input Tokens
1157
Output Tokens
894
Cost
$0.01
Context
Input
Return a list of all ingredients part of this recipe, ordered alphabetically. Only ingredients , not quantities
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": [
    "Basmati rice",
    "Bay leaf",
    "Chicken",
    "Cilantro",
    "Cinnamon stick",
    "Cloves",
    "Garam masala",
    "Ghee",
    "Ginger-garlic paste",
    "Green cardamom pods",
    "Lemon",
    "Milk",
    "Mint",
    "Oil",
    "Onions",
    "Plain yogurt",
    "Red chili powder",
    "Saffron",
    "Salt",
    "Turmeric",
    "Water"
  ]
}