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
16s
Input Tokens
781
Output Tokens
200
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": [
    "potatoes",
    "oil",
    "salt",
    "mince",
    "pepper",
    "bacon",
    "cheese",
    "bread",
    "lettuce",
    "tomato",
    "onion",
    "mustard",
    "ketchup",
    "mayonnaise"
  ]
}
Model output
{
  "ingredients": [
    "potatoes",
    "oil",
    "salt",
    "mince",
    "pepper",
    "bacon",
    "cheese",
    "bread",
    "lettuce",
    "tomato",
    "onion",
    "mustard",
    "ketchup",
    "mayonnaise"
  ]
}