inference-providers

Ling 3.0 Flash

by inclusionai · family ling

Facts

Release date2026-07-23
Retired date
Knowledge cutoff
Context (max)262,144
Max output
Modalitiestext → text
Aliasesling-3.0-flash
Open weightsyes (inclusionAI/Ling-3.0-flash)
DescriptionAnt 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

ProviderWire IDVariantEndpointProtocolStatusPrice (USD / Mtok)Reasoning
OpenRouterinclusionai/ling-3.0-flashflashchat-completionsopenai-chatga0.02 / 0.06effort · 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_content artifacts — pass them back unmodified on subsequent turns (dropping them triggers 400s or quality loss).