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.

0
Duration
3s
Input Tokens
748
Output Tokens
250
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",
    "Burger patty",
    "Cheese",
    "Ketchup",
    "Lettuce",
    "Mayonnaise",
    "Mince",
    "Mustard",
    "Oil",
    "Onion",
    "Pepper",
    "Potatoes",
    "Salt",
    "Tomato"
  ]
}