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
262k tokens
Input / 1M tokens
$0.06
Output / 1M tokens
$0.18
Benchmark
—
Pricing
Input tokens$0.06 per 1M tokens
Output tokens$0.18 per 1M tokens
Cache read$0.01 per 1M tokens
Technical details
Model IDinclusionai/ling-3.0-flash
Context window262k tokens
Input modalitiestext
Output modalitiestext
TokenizerOther
Max output tokens32,768
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!' }],
})