> ## Documentation Index
> Fetch the complete documentation index at: https://miles.radixark.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Supported Models

> Per-family recipes covering weight conversion, launch flags, and parallelism choices.

Miles ships ready-to-run recipes for every model family listed below. Each page covers
weight conversion, parallelism, and the launch script in the order you'd actually run
them.

## By family

Each model name links to its recipe page.

| Family                | Models                                                                                                                                                                                                                                                                                                                                                                   |
| --------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| **DeepSeek**          | [DeepSeek-V4 Pro](/docs/models/deepseek/deepseek-v4-pro)<br />[DeepSeek-V4 Flash](/docs/models/deepseek/deepseek-v4-flash)<br />[DeepSeek-R1](/docs/models/deepseek/deepseek)<br />[DeepSeek-V3](/docs/models/deepseek/deepseek)                                                                                                                                                             |
| **Thinking Machines** | [Inkling](/docs/models/thinkingmachines/inkling)                                                                                                                                                                                                                                                                                                                              |
| **Qwen**              | [Qwen3.6 MoE](/docs/models/qwen/qwen3-6-moe)<br />[Qwen3.6](/docs/models/qwen/qwen3-6)<br />[Qwen3.5-35B-A3B](/docs/models/qwen/qwen3-5-moe)<br />[Qwen3.5-4B / 9B / 27B](/docs/models/qwen/qwen3-5)<br />[Qwen3-Next-80B-A3B-Thinking](/docs/models/qwen/qwen3-next)<br />[Qwen3-30B-A3B / 235B-A22B](/docs/models/qwen/qwen3-moe)<br />[Qwen3-0.6B / 1.7B / 4B / 8B / 14B / 32B](/docs/models/qwen/qwen3) |
| **GLM**               | [GLM-5.1](/docs/models/glm/glm5)<br />[GLM-5](/docs/models/glm/glm5)<br />[GLM-4.7-Flash](/docs/models/glm/glm4-7-flash)<br />[GLM-4.5](/docs/models/glm/glm4-5)<br />[GLM-Z1-9B-0414](/docs/models/glm/glm4)                                                                                                                                                                                     |
| **Kimi**              | [Kimi-K2.6](/docs/models/kimi/kimi-k2.5)<br />[Kimi-K2.5](/docs/models/kimi/kimi-k2.5)<br />[Kimi-K2-Instruct / Thinking](/docs/models/kimi/kimi-k2)<br />[Moonlight-16B-A3B](/docs/models/kimi/moonlight)                                                                                                                                                                                   |
| **Nemotron**          | [Nemotron-3-Super-120B-A12B-FP8](/docs/models/nemotron/nemotron-3-super)<br />[Nemotron-3-Nano MoE](/docs/models/nemotron/nemotron-3-nano-moe)<br />[Nemotron-3-Nano](/docs/models/nemotron/nemotron-3-nano)                                                                                                                                                                            |
| **MiMo**              | [MiMo-7B-RL](/docs/models/mimo/mimo)                                                                                                                                                                                                                                                                                                                                          |
| **GPT-OSS**           | [gpt-oss-20b](/docs/models/gpt-oss/gpt-oss)                                                                                                                                                                                                                                                                                                                                   |

## How a recipe is structured

Every recipe page follows the same six sections:

1. **Model Introduction** — what the model is and why miles supports it.
2. **Supported Variants** — model sizes + HF links.
3. **Environment Setup** — env vars, downloads, and HF → Megatron conversion.
4. **Launch** — the `scripts/run-<family>.sh` (or `run_<family>.py`) invocation.
5. **Recipe Configuration** — parallelism, algorithm, rollout/SGLang, optimizer.
6. **Pairs Well With** — links to the advanced features that complement this recipe.

## Adding a new model

Miles's plugin architecture lets you wrap a HuggingFace implementation as a Megatron
module without patching Megatron core. See
[Backends Beyond Megatron](/docs/advanced/architecture-support) for the workflow.
