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
10s
Input Tokens
1316
Output Tokens
124
Cost
$0.00
Context
Input
Label the recipe with dietary and allergen information. Use the following definitions:
- gluten_intolerant: Dish must not contain bread, wheat-based sauces, or anything with gluten
- Vegetarian: Must not contain meat or fish
- Vegan: Must not contain meat, fish, dairy, or eggs
- Halal: Must not contain pork and all meat must be acceptable under halal preparaxtion (assume bacon is not halal)
- Dairy: Contains any dairy products (e.g., cheese, butter, milk, cream)
Expected output
{
  "gluten_intolerant": true,
  "vegetarian": false,
  "vegan": false,
  "halal": true,
  "dairy": true
}
Model output
{
  "gluten_intolerant": true,
  "vegetarian": false,
  "vegan": false,
  "halal": true,
  "dairy": true
}