inclusionai
Ling-3.0-flash
*Ling-3.0-flash* is a *124B-parameter Mixture-of-Experts (MoE) model*, with approximately *5.1B parameters activated per token*. The model is designed with *token efficiency and production-scale agentic inference* as key priorities, enabling developers...
Context
131k tokens
Input / 1M tokens
$0.07
Output / 1M tokens
$0.22
Benchmark
—
Pricing
Input tokens$0.07 per 1M tokens
Output tokens$0.22 per 1M tokens
Cache read$0.01 per 1M tokens
Technical details
Model IDinclusionai/ling-3.0-flash
Context window131k tokens
Input modalitiestext
Output modalitiestext
TokenizerOther
Max output tokens16,384
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: 'inclusionai/ling-3.0-flash',
messages: [{ role: 'user', content: 'Hello!' }],
})