Translate
Uses Google Translate to translate content to any language.
Statistics
Type | Speed | Partner Type |
---|---|---|
Post-Processing Classifier | Instant | Datastreamer Internal |
Example Use Cases
- Translating international results into a single language.
Compatible Data Sources
As a Post-Processing operation, it can be run on any data source.
Recipe Available
View the below recipe to see it in action, and easily view how to integrate it into your own data pipeline.
🎛️
Using Post-Processing Operations
Open Recipe
Usage
This Operation allows a user to specify the destination field, source fields, and separator.
{
"query": {
...
},
"operations": [
{
"name": "translate",
"destination_path": "operations.translation",
"parameters": {
"language": "enrichment.language",
"text": "content.body",
"from": "en",
"to": "fr"
}
}
]
}
```
Language
If no "from"language is specified, Google Translate will detect the language.
Updated 9 months ago