Hunyuan MT2 Plus is a dedicated machine-translation model covering 30+ languages with domain-aware, terminology-consistent output — at a low per-token price, zero platform fee.
curl https://aiapi-pro.com/v1/chat/completions \
-H "Authorization: Bearer $NOVAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "hy-mt2-plus",
"messages": [{"role":"user","content":"Translate this product description into Japanese and German"}]
}'
from openai import OpenAI
client = OpenAI(
base_url="https://aiapi-pro.com/v1",
api_key="YOUR_NOVAI_API_KEY",
)
resp = client.chat.completions.create(
model="hy-mt2-plus",
messages=[{"role":"user","content":"Translate this product description into Japanese and German"}],
)
print(resp.choices[0].message.content)
Zero platform fee. Credits never expire. OpenAI-compatible API.
Sign Up Free