Common jobs
Product content enrichment
Product content enrichment
Generate descriptions, bullet points, and marketing copy from structured product attributes.Typical setup: a Brand variant carrying voice and terminology, a Language variant per market, a JSON Schema rule enforcing field lengths, and a forbidden-terms rule blocking claims your legal team will not sign off on.
Feed compliance
Feed compliance
Rewrite catalogue content so it satisfies a channel’s content policy — character limits, banned phrasing, required attributes, no HTML.Most of this job is deterministic. A JSON Schema rule with
maxLength and pattern constraints does the heavy lifting; AI checks cover only the judgment calls.Classification and attribute extraction
Classification and attribute extraction
Assign category codes, extract structured attributes from free text, or normalise inconsistent values across suppliers.Constrain the output with an
enum in the schema rule so the model cannot invent a category that does not exist in your taxonomy.Translation and localisation
Translation and localisation
Produce per-market content from one source, with per-language rules — formality, terminology, forbidden contractions.Use a Language variant and scope the rules that genuinely differ per language rather than writing near-identical global rules.
Image-grounded content
Image-grounded content
Let a vision model see the product photos and describe what is actually there — colour, pattern, cut — instead of guessing from a URL.The generator and the checker are separate calls, so one model can write the description while a different model independently verifies it against the picture. Capabilities
Chained pipelines
Chained pipelines
Feed one task’s approved output into the next: extract attributes in stage one, write copy from those attributes in stage two.Stage two reads the first task’s stage output rather than the raw index. Content sources