Ling 3.0 Flash
by inclusionai · family ling
Facts
| Release date | 2026-07-23 |
|---|---|
| Retired date | — |
| Knowledge cutoff | — |
| Context (max) | 262,144 |
| Max output | — |
| Modalities | text → text |
| Aliases | ling-3.0-flash |
| Open weights | yes (inclusionAI/Ling-3.0-flash) |
| Description | Ant Group's Ling 3.0-Flash: 124B total / 5.1B-active MoE, 262K context, open-sourced 2026-08-05. $0.021/$0.063 per Mtok on OpenRouter — among the cheapest frontier-adjacent listings. |
Unknown values are shown as —.
Offerings
| Provider | Wire ID | Variant | Endpoint | Protocol | Status | Price (USD / Mtok) | Reasoning |
|---|---|---|---|---|---|---|---|
| OpenRouter | inclusionai/ling-3.0-flash | flash | chat-completions | openai-chat | ga | 0.02 / 0.06 | effort · default on · returns reasoning_content · round-trips reasoning_content |
Reasoning controls
OpenRouter· inclusionai/ling-3.0-flash· chat-completions effort
reasoning.effort nonelowmedium●highxhighmax
effort · default on · returns reasoning_content · round-trips reasoning_content
Example requests
OpenRouter · openai-chat · inclusionai/ling-3.0-flash
curl 'https://openrouter.ai/api/v1/chat/completions' \
-H 'Authorization: Bearer <YOUR_API_KEY>' \
-H 'Content-Type: application/json' \
-d '{
"model": "inclusionai/ling-3.0-flash",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
}'Python (requests)
import requests
resp = requests.post(
"https://openrouter.ai/api/v1/chat/completions",
headers={
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
json={
"model": "inclusionai/ling-3.0-flash",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
},
)
print(resp.json())TypeScript (fetch)
const resp = await fetch("https://openrouter.ai/api/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR_API_KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "inclusionai/ling-3.0-flash",
"messages": [
{
"role": "user",
"content": "Tell me about the weather."
}
],
"reasoning": {
"effort": "medium"
}
}),
})
console.log(await resp.json())- ⚠ Responses include
reasoning_contentartifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).