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.

0
Duration
5s
Input Tokens
866
Output Tokens
191
Cost
$0.00
Context
Input
Return if the following product is allowed in EU, USA and Asia. Only follow the guidelines in the text, no other knowledge
Expected output
{
  "allowed_in_eu": false,
  "allowed_in_usa": true,
  "allowed_in_asia": false
}
Model output
{
  "allowed_in_eu": true,
  "allowed_in_usa": true,
  "allowed_in_asia": true
}