Data Normalization

Data processing and normalization tasks evaluate structured output from messy prose and different structures. This capability is essential for catalogue and product pipelines where data needs to be extracted from unstructured text and formatted consistently. Models must understand the desired output format and extract relevant information accurately.

50
Duration
5s
Input Tokens
966
Output Tokens
250
Cost
$0.00
Context
Input
A customer from the USA is interested in the following product, return the product sheet. Base the response only in the context.
Expected output
{
  "country": "USA",
  "product": "AeroSeal-X Polymer Matrix",
  "ingredients": [
    "NanoSilicon Oxide-Δ3",
    "Isomerized Hexaoxy Toluate (IHT)",
    "Zinc Pyrithionate Modulator",
    "Tetramethyl Ethyloxy Resinate",
    "Polyether Vinylcaprolactam",
    "ThermoReactive Benzonate (TRB-9)"
  ],
  "allowed": false
}
Model output
{
  "country": "USA",
  "product": "AeroSeal-X Polymer Matrix",
  "ingredients": [
    "NanoSilicon Oxide-Δ3 – 18.0%",
    "Isomerized Hexaoxy Toluate (IHT) – 12.5%",
    "Zinc Pyrithionate Modulator – 7.0%",
    "Tetramethyl Ethyloxy Resinate – 4.3%",
    "Polyether Vinylcaprolactam – 28.0%",
    "ThermoReactive Benzonate (TRB-9) – 30.2%"
  ],
  "allowed": false
}