Claude Opus 4.6
Unrated8,110ms949 tokens
```json
[
{
"item_number": 1,
"description": "Widget Pro X",
"quantity": 3,
"unit_price": 45.00,
"total": 135.00
},
{
"item_number": 2,
"description": "Deluxe Mounting Bracket (set of 4)",
"quantity": 1,
"unit_price": 22.50,
"total": 22.50
},
{
"item_number": 3,
"description": "instalation service",
"quantity": 2,
"unit_price": 85.00,
"total": 170.00
},
{
"item_number": 4,
"description": "Cable Harness Assembly",
"quantity": 10,
"unit_price": 12.99,
"total": 139.90
},
{
"item_number": 5,
"description": "Replacement Filter (HEPA)",
"quantity": 1,
"unit_price": 18.00,
"total": 18.00
},
{
"item_number": 6,
"description": "Calibration Fee",
"quantity": null,
"unit_price": null,
"total": 200.00
},
{
"item_number": 7,
"description": "Shipping & Handling",
"quantity": null,
"unit_price": null,
"total": 15.75
},
{
"item_number": 8,
"description": "Extended Warranty - 2yr",
"quantity": 1,
"unit_price": 75.00,
"total": 175.00
}
]
```
**Notes:**
- **Item 3** ("instalation service"): The typo in "instalation" is preserved as written.
- **Item 4**: "Totl" is a typo for "Total"; the value $139.90 is extracted as-is (correct math would be $129.90 for 10 × $12.99).
- **Item 8**: The total is listed as $175.00 despite qty 1 × $75.00 = $75.00 — this is the **calculation error** preserved as-is from the invoice.
- **Items 6 & 7**: No explicit quantity or unit price was provided, so those fields are `null`.