Ling 3.0 Flash
By inclusionAI. 127.5 billion parameters, a context window of 262,144 tokens and the licence mit.
Facts
- Released
- 2026-08-02 the day the repository was first published on Hugging Face Hugging Face, read
- Licence
- mit the licence the model card declares Hugging Face, read
- Open weights
- Yes the weights are published in this Hugging Face repository Hugging Face, read
- Parameters
- 127.5 billion counted from the safetensors weight files Hugging Face, read
- Active parameters
- 8.6 billion estimate estimated from the expert counts and sizes in the configuration model configuration, read
- Knowledge cutoff
- Unknown
- Context window
- 262,144 tokens the maximum position embeddings in the model configuration model configuration, read
- 262,144 tokens the context length OpenRouter lists OpenRouter, read
- Longest output
- 32,768 tokens the largest output OpenRouter's first provider allows OpenRouter, read
- Tool calling
- Yes OpenRouter lists tools among the supported parameters OpenRouter, read
- Structured output
- Yes OpenRouter lists response_format, a JSON mode, among the supported parameters OpenRouter, read
- Reasoning controls
- Yes OpenRouter lists reasoning controls OpenRouter, read
- Inputs and outputs
- text in, text out Hugging Face, read
- Good for
- Reasoning: OpenRouter lists reasoning controls for it OpenRouter, read
Prices
| Provider | Input | Output | Context | As of | Source |
|---|---|---|---|---|---|
| Novita through OpenRouter | 0.021 USD | 0.063 USD | 262,144 | OpenRouter endpoints, read | |
| OpenRouter direct | 0.021 USD | 0.063 USD | 262,144 | older than 30 days; check the provider | models.dev, read |
| Vercel AI Gateway direct | 0.021 USD | 0.063 USD | 256,000 | older than 30 days; check the provider | models.dev, read |
| DeepInfra through OpenRouter | 0.060 USD | 0.180 USD | 131,072 | OpenRouter endpoints, read | |
| Kilo Gateway direct | 0.060 USD | 0.180 USD | 262,144 | older than 30 days; check the provider | models.dev, read |
| NanoGPT direct | 0.075 USD | 0.220 USD | 262,144 | older than 30 days; check the provider | models.dev, read |
Run it on your own hardware
Weights are the sizes of the files a source lists, or an estimate from the parameter count where none does. Memory is an estimate: weights plus KV cache plus 512 MiB and 5 percent of the weights for runtime buffers. Check it against your hardware.
| Quantization | Weights | Memory at 8,192 tokens | Memory at 32,768 tokens |
|---|---|---|---|
| IQ1_S | 30.2 GiB | 32.5 GiB | 33.6 GiB |
| IQ1_M | 34.0 GiB | 36.5 GiB | 37.6 GiB |
| IQ2_XXS | 36.5 GiB | 39.2 GiB | 40.3 GiB |
| IQ2_XS | 41.7 GiB | 44.6 GiB | 45.7 GiB |
| IQ2_S | 43.7 GiB | 46.8 GiB | 47.9 GiB |
| IQ2_M | 45.7 GiB | 48.9 GiB | 50.0 GiB |
| IQ3_XXS | 53.2 GiB | 56.7 GiB | 57.8 GiB |
| IQ3_S | 53.9 GiB | 57.4 GiB | 58.5 GiB |
| IQ3_M | 57.9 GiB | 61.7 GiB | 62.8 GiB |
| IQ4_XXS | 64.6 GiB | 68.7 GiB | 69.8 GiB |
| Q4_K | 67.4 GiB | 71.6 GiB | 72.7 GiB |
| Q4_K_S | 69.1 GiB | 73.5 GiB | 74.6 GiB |
| IQ4_NL | 73.9 GiB | 78.4 GiB | 79.5 GiB |
| Q4_K_L | 78.2 GiB | 83.0 GiB | 84.1 GiB |
| Q5_K_S | 81.4 GiB | 86.4 GiB | 87.5 GiB |
| Q5_K_L | 88.8 GiB | 94.1 GiB | 95.2 GiB |
| Q8_0 | 124 GiB | 131 GiB | 132 GiB |
| BF16 | 232 GiB | 244 GiB | 245 GiB |
Start it with a local runtime
- Ollama
ollama run hf.co/AtomicChat/Ling-3.0-flash-GGUF:Q4_K_S - LM Studio
lms get AtomicChat/Ling-3.0-flash-GGUF lms server start - llama.cpp server
llama-server -hf AtomicChat/Ling-3.0-flash-GGUF:Q4_K_S --jinja - vLLM
vllm serve inclusionAI/Ling-3.0-flash - SGLang
sglang serve --model-path inclusionAI/Ling-3.0-flash --port 30000
Use it from your harness
Set up for Kilo Gateway with the model inclusionai/ling-3.0-flash. Each endpoint page has the same setup for its own address.
OpenCode
Put this in opencode.json in your project folder:
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"kilo": {
"npm": "@ai-sdk/openai-compatible",
"name": "Kilo Gateway",
"options": {
"baseURL": "https://api.kilo.ai/api/gateway",
"apiKey": "{env:KILO_API_KEY}"
},
"models": {
"inclusionai/ling-3.0-flash": {
"name": "Ling 3.0 Flash",
"limit": {
"context": 262144,
"output": 32768
}
}
}
}
}
}- OpenCode reads any OpenAI-compatible address through the @ai-sdk/openai-compatible package, and an address that speaks the Responses API through @ai-sdk/openai.
From OpenCode documentation, read .
Pi
Put this in ~/.pi/agent/models.json:
{
"providers": {
"kilo": {
"baseUrl": "https://api.kilo.ai/api/gateway",
"api": "openai-completions",
"apiKey": "$KILO_API_KEY",
"models": [
{
"id": "inclusionai/ling-3.0-flash"
}
]
}
}
}- The apiKey field can name an environment variable as $NAME.
From Pi documentation, read .
Codex
Codex speaks only the Responses API, and Kilo Gateway documents no Responses address. A gateway that offers one can sit in between.
- Codex speaks the Responses API only: responses is the one supported wire API of a custom provider. Ollama and LM Studio are built in and start with --oss.
From Codex documentation, read .
Claude Code
Claude Code sends Anthropic Messages requests, and Kilo Gateway documents no such address. A gateway that translates to that API can sit in between.
- Claude Code sends Anthropic Messages requests to ANTHROPIC_BASE_URL. Anthropic says it does not support routing Claude Code to models other than Claude through any gateway, so some features may not work with another model.
From Claude Code documentation, read .
Other ways to reach it
- NanoGPT, model
inclusionai/ling-3.0-flash - OpenRouter, model
inclusionai/ling-3.0-flash - Ollama, model
hf.co/AtomicChat/Ling-3.0-flash-GGUF:Q4_K_S
Published results
These are results other people published. Baltor did not run them and does not rank models by them.
- Results the maker published on the model card published by inclusionAI Hugging Face, read
- Artificial Analysis Coding Index: 50.6 published by Artificial Analysis OpenRouter, read
Sources of this page
- huggingface.co/api/models/inclusionAI/Ling-3.0-flash, read
- huggingface.co/inclusionAI/Ling-3.0-flash/raw/main/config.json, read
- huggingface.co/api/models/AtomicChat/Ling-3.0-flash-GGUF/tree/main, read
- openrouter.ai/api/v1/models/inclusionai/ling-3.0-flash-20260723/endpoints, read
- openrouter.ai/api/v1/models, read
- models.dev/api.json, read
Paid links
No link in this directory is a paid link or an ad, and no listing is paid for. The order and the contents of every list come from the sources named on this page.