Configure transformations on input data before sending it to your AI/ML model.
⚠️ Preprocessing does not modify your original data — it only adjusts the payload sent to the model for that request.
Example Use Case | Transformation |
---|---|
Format created_at timestamp | Convert to ISO 8601 |
Combine first and last name | Join with space |
Normalize text input | Lowercase, remove punctuation |
Apply static fallback | Use default if no value found |
deal_amount
from a CRM, you might want to round it or convert it into another currency before sending it to the model.