get https://api.apptek.com/api/v2/translate/models
Retrieve the available translation models.
Model Description
The query returns a JSON array with description objects for each model.
name
: The model name which is used to perform a translation request.description
: A simple description of the model.features
: An array providing a list of features that are available when using the translation model.
Description of features
Feature | Description |
---|---|
advanced_srt_generation | When translating an SRT document, a specialized segmentation model can be used which provides more human-like subtitling. |
meta_controls | The model is meta-aware and allows refinement of the translation output. Models may support different meta_controls and these will be listed with their potential values in the meta_controls array. See the example model description below. |
[
{
"meta_controls": [
{
"name": "gender",
"values": [
"female"
]
},
{
"name": "genre",
"values": [
"military",
"bullets",
"religion",
"dialogs",
"government",
"poetry",
"newswire",
"manuals",
"legal",
"marketing",
"speeches",
"school",
"reviews",
"patents",
"talks",
"comments",
"nonfiction",
"blogs",
"commerce",
"science",
"prose",
"broadcasts",
"docu",
"emails"
]
},
{
"name": "length_ratio",
"values": [
"long",
"short",
"extra_long",
"extra_short",
"medium"
]
},
{
"name": "style",
"values": [
"formal",
"informal"
]
}
],
"features": [
"advanced_srt_generation",
"meta_controls"
],
"name": "en-es_latam",
"description": "AppTek MT EN-ES_latam"
}
]