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
14s
Input Tokens
821
Output Tokens
835
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",
    "mince",
    "mustard",
    "oil",
    "onion",
    "pepper",
    "potato",
    "salt",
    "tomato"
  ]
}