index.rst 1.48 KB
Newer Older
1
SGLang Documentation
2
3
====================================

4
5
6
SGLang is a fast serving framework for large language models and vision language models.
It makes your interaction with models faster and more controllable by co-designing the backend runtime and frontend language.
The core features include:
7

8
9
10
11
- **Fast Backend Runtime**: Provides efficient serving with RadixAttention for prefix caching, jump-forward constrained decoding, continuous batching, token attention (paged attention), tensor parallelism, FlashInfer kernels, chunked prefill, and quantization (INT4/FP8/AWQ/GPTQ).
- **Flexible Frontend Language**: Offers an intuitive interface for programming LLM applications, including chained generation calls, advanced prompting, control flow, multi-modal inputs, parallelism, and external interactions.
- **Extensive Model Support**: Supports a wide range of generative models (Llama 3, Gemma 2, Mistral, QWen, DeepSeek, LLaVA, etc.) and embedding models (e5-mistral), with easy extensibility for integrating new models.
- **Active Community**: SGLang is open-source and backed by an active community with industry adoption, welcoming contributions to improve LLM and VLM serving.
12
13


14
15
.. toctree::
   :maxdepth: 1
16
   :caption: Getting Started
17
18

   install.md
19
20
   backend.md
   frontend.md
21

22
23
.. toctree::
   :maxdepth: 1
24
   :caption: References
25

26
   sampling_params.md
27
28
   hyperparameter_tuning.md
   model_support.md
29
30
31
32
   contributor_guide.md
   choices_methods.md
   benchmark_and_profiling.md
   troubleshooting.md