
Configuration
| Setting | Description |
|---|---|
| LLM Integration | The AI provider to use (e.g., Gemini, OpenAI, Anthropic) |
| Field Mappings | Connect input fields on the left to output fields on the right. Draw lines to define relationships |
How It Works
Define input fields
Select the fields from your data that need normalization (e.g.,
BillingStreet, BillingCity).Output
Normalized output fields become available as Mentions in all downstream nodes.Example
Standardize addresses across a Salesforce Account dataset:- Map
BillingStreet,BillingCity,BillingStateas inputs - Create normalized output fields for each
- The LLM cleans formatting inconsistencies (e.g., “123 Main St.” → “123 Main Street”)
Best Practices
- Use specific, descriptive output field names to avoid confusion downstream
- Test with a small batch first to verify the LLM produces the expected format
- Choose the right LLM — faster models for simple formatting, stronger models for complex transformations
Related Nodes
- AI Enrichment — uses an LLM prompt to generate new data rather than cleaning existing fields
- Transform — applies rule-based transformations without an LLM
- Regex Pattern — extracts or replaces text using regular expressions