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.

50
Duration
11s
Input Tokens
743
Output Tokens
869
Cost
$0.00
Context
Input
Return a list of all ingredients part of this recipe, ordered alphabetically
Expected output
{
  "ingredients": [
    "bacon",
    "bread",
    "cheese",
    "ketchup",
    "lettuce",
    "mayonnaise",
    "mince",
    "mustard",
    "oil",
    "onion",
    "pepper",
    "potatoes",
    "salt",
    "tomato"
  ]
}
Model output
{
  "ingredients": [
    "Bacon",
    "Bread",
    "Cheese",
    "Ketchup",
    "Lettuce",
    "Mayonnaise",
    "Minced meat",
    "Oil",
    "Onion",
    "Pepper",
    "Potato",
    "Salt",
    "Tomato",
    "Mustard"
  ]
}