Tencent Hy-MT2 Plus
Tencent Hunyuan MT2 Plus is a 7B-parameter translation model with an 8K context window. It supports translation across 33 languages and 5 ethnic Chinese and dialect variants.
Model details
Section titled “Model details”| Field | Value |
|---|---|
| Model ID | hy-mt2-plus |
| Provider | Tencent |
| Context window | 8,192 tokens |
| Max output | 4,096 tokens |
| Input | Text |
| Output | Text |
| Tool calling | No |
| Multimodal | No |
| Cache | Not verified |
Pricing
Section titled “Pricing”| Metric | Price |
|---|---|
| Input ($/1M tokens) | $0.074 |
| Output ($/1M tokens) | $0.295 |
curl https://llmtr.com/v1/chat/completions \ -H "Authorization: Bearer $LLMTR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "tencent/hy-mt2-plus", "messages": [ { "role": "user", "content": "Translate the following text to Turkish: Hello, how are you?" } ] }'from openai import OpenAI
client = OpenAI( api_key="<LLMTR_API_KEY>", base_url="https://llmtr.com/v1",)
response = client.chat.completions.create( model="tencent/hy-mt2-plus", messages=[ { "role": "user", "content": "Translate the following text to Turkish: Hello, how are you?" } ],)print(response.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({ apiKey: "<LLMTR_API_KEY>", baseURL: "https://llmtr.com/v1",});
const response = await client.chat.completions.create({ model: "tencent/hy-mt2-plus", messages: [ { role: "user", content: "Translate the following text to Turkish: Hello, how are you?", }, ],});console.log(response.choices[0].message.content);Supported languages
Section titled “Supported languages”33 languages and 5 ethnic Chinese and dialect pairs. Industry-leading results on Flores200 and WMT25 benchmarks. Supports structured translation, context-aware translation, glossary-based translation, and style-specific translation.
Data policy
Section titled “Data policy”This model runs on Tencent infrastructure outside Turkey. Requests and completions may be logged by the provider. This is not a LLMTR model hosted in Turkey.