tencent
Tencent: Hy3
Hy3 is a 295B-parameter Mixture-of-Experts model from Tencent (21B active, 192 experts with top-8 routing) built for reasoning, agentic workflows, and real-world production use. It supports a configurable reasoning effort:...
Context
262k tokens
Input / 1M tokens
$0.14
Output / 1M tokens
$0.58
Benchmark
—
Pricing
Input tokens$0.14 per 1M tokens
Output tokens$0.58 per 1M tokens
Cache read$0.04 per 1M tokens
Technical details
Model IDtencent/hy3
Context window262k tokens
Input modalitiestext
Output modalitiestext
TokenizerOther
Max output tokens131,072
Use with MegaBrain
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://getmegabrain.com/api/gateway/v1',
apiKey: process.env.MEGABRAIN_API_KEY,
})
const response = await client.chat.completions.create({
model: 'tencent/hy3',
messages: [{ role: 'user', content: 'Hello!' }],
})