docs_new/README.md
The official documentation and cookbook for SGLang — a high-performance serving framework for large language models and vision-language models.
.
├── docs.json # Site configuration (navigation, theme, metadata)
├── index.mdx # Homepage
├── docs/ # Documentation pages
│ └── get-started/
│ └── install.mdx # Installation guide
└── cookbook/ # Model deployment recipes
├── intro.mdx # Cookbook overview and recipe index
└── autoregressive/ # Autoregressive model recipes
└── Qwen/
└── Qwen3.5.mdx
Pages are .mdx files with YAML frontmatter. Navigation is defined in docs.json.
# Install the CLI
npm i -g mint
# Start the dev server (with hot reload)
mint dev
Preview at http://localhost:3000.
mint dev # Start local preview server
mint broken-links # Check for broken links
mint update # Update the CLI
We welcome contributions! Whether you want to add a recipe for a new model, improve existing docs, or fix a typo — PRs are appreciated.
# 1. Fork and clone the repo
git clone https://github.com/<YOUR_USERNAME>/sgl-docs.git
cd sgl-docs
# 2. Create a branch
git checkout -b my-changes
# 3. Start the dev server and make your changes
mint dev
# 4. Verify links aren't broken
mint broken-links
# 5. Commit and push
git add <files>
git commit -m "docs: describe your change"
git push origin my-changes
# 6. Open a pull request on GitHub
.mdx file under cookbook/ following the existing directory structure (e.g., cookbook/llm/<Vendor>/<Model>.mdx or cookbook/vlm/<Vendor>/<Model>.mdx)cookbook/llm/Qwen/Qwen3.5.mdx as a templatedocs.jsonThank you to all the authors who contributed to the original documentation in sglang/docs/ and the original cookbook in sgl-cookbook. The migration to the new Mintlify-based documentation was led by the following ACM-VIT students:
@Adhyan Jain, @Maitri-shah29, @architnigam, @Nakul-Sinha, @divyamagrawal06, @A-Taman, @nimeshas, @IshhanKheria, @Krishang-Zinzuwadia, @pokymono, @Ishitajoshii, @AdityaVKochar
Advised by @adarshxs (ACM-VIT) and @wisclmy0611, @Richardczl98 (LMSYS).
Apache License 2.0 — see the LICENSE for details.