2024-10-11 18:55:30 +05:30
< div align = "center" id = "sglangtop" >
2024-10-11 14:27:42 +05:30
< img src = "https://raw.githubusercontent.com/sgl-project/sglang/main/assets/logo.png" alt = "logo" width = "400" margin = "10px" > < / img >
2024-03-10 18:51:47 -07:00
2024-07-28 22:24:27 +10:00
[](https://pypi.org/project/sglang)

[](https://github.com/sgl-project/sglang/tree/main/LICENSE)
[](https://github.com/sgl-project/sglang/issues)
[](https://github.com/sgl-project/sglang/issues)
2024-11-09 11:32:13 -08:00
[-006BFF)](https://gurubase.io/g/sglang)
2024-07-28 22:24:27 +10:00
2024-07-28 22:27:52 +10:00
< / div >
2024-03-10 18:51:47 -07:00
--------------------------------------------------------------------------------
2024-11-08 11:46:25 -08:00
| [**Blog** ](https://lmsys.org/blog/2024-07-25-sglang-llama3/ ) | [**Documentation** ](https://sgl-project.github.io/ ) | [**Join Slack** ](https://join.slack.com/t/sgl-fru7574/shared_invite/zt-2tmmp6flg-89dOlJW2TjnBrTRk1I_~GA ) |
2024-11-11 21:03:16 +08:00
[**Join Bi-Weekly Development Meeting** ](https://docs.google.com/document/d/1xEow4eIM152xNcRxqZz9VEcOiTQo8-CEuuQ5qTmkt-E/edit?usp=sharing ) | [**Slides** ](https://github.com/sgl-project/sgl-learning-materials?tab=readme-ov-file#slides ) |
2024-01-08 04:37:50 +00:00
2024-10-06 15:14:29 -07:00
## News
2024-10-19 07:11:02 -07:00
- [2024/10] 🔥 The First SGLang Online Meetup ([slides ](https://github.com/sgl-project/sgl-learning-materials?tab=readme-ov-file#the-first-sglang-online-meetup )).
- [2024/09] SGLang v0.3 Release: 7x Faster DeepSeek MLA, 1.5x Faster torch.compile, Multi-Image/Video LLaVA-OneVision ([blog ](https://lmsys.org/blog/2024-09-04-sglang-v0-3/ )).
- [2024/07] Faster Llama3 Serving with SGLang Runtime (vs. TensorRT-LLM, vLLM) ([blog ](https://lmsys.org/blog/2024-07-25-sglang-llama3/ )).
2024-02-03 02:50:13 -08:00
2024-07-19 09:54:01 -07:00
< details >
< summary > More< / summary >
2024-10-19 12:58:55 -07:00
- [2024/02] SGLang enables **3x faster JSON decoding** with compressed finite state machine ([blog ](https://lmsys.org/blog/2024-02-05-compressed-fsm/ )).
2024-08-24 08:02:23 -07:00
- [2024/04] SGLang is used by the official **LLaVA-NeXT (video)** release ([blog ](https://llava-vl.github.io/blog/2024-04-30-llava-next-video/ )).
2024-07-25 09:13:37 -07:00
- [2024/01] SGLang provides up to **5x faster inference** with RadixAttention ([blog ](https://lmsys.org/blog/2024-01-17-sglang/ )).
2024-07-19 09:54:01 -07:00
- [2024/01] SGLang powers the serving of the official **LLaVA v1.6** release demo ([usage ](https://github.com/haotian-liu/LLaVA?tab=readme-ov-file#demo )).
< / details >
2024-10-05 11:16:47 -07:00
## About
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:
- **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.
2024-11-03 22:33:03 -08:00
- **Extensive Model Support**: Supports a wide range of generative models (Llama, Gemma, Mistral, QWen, DeepSeek, LLaVA, etc.), embedding models (e5-mistral, gte) and reward models (Skywork), with easy extensibility for integrating new models.
2024-10-05 11:16:47 -07:00
- **Active Community**: SGLang is open-source and backed by an active community with industry adoption.
2024-11-03 22:33:03 -08:00
## Getting Started
Install SGLang: See [https://sgl-project.github.io/start/install.html ](https://sgl-project.github.io/start/install.html )
Send requests: See [https://sgl-project.github.io/start/send_request.html ](https://sgl-project.github.io/start/send_request.html )
2024-01-16 15:49:03 -08:00
2024-07-19 09:54:01 -07:00
## Backend: SGLang Runtime (SRT)
2024-10-31 20:10:16 -07:00
See [https://sgl-project.github.io/backend/backend.html ](https://sgl-project.github.io/backend/backend.html )
2024-07-19 11:12:23 -07:00
2024-07-19 09:54:01 -07:00
## Frontend: Structured Generation Language (SGLang)
2024-10-31 20:10:16 -07:00
See [https://sgl-project.github.io/frontend/frontend.html ](https://sgl-project.github.io/frontend/frontend.html )
2024-01-23 03:43:19 -08:00
2024-07-25 09:13:37 -07:00
## Benchmark And Performance
2024-10-30 21:57:49 -07:00
Learn more in our release blogs: [v0.2 blog ](https://lmsys.org/blog/2024-07-25-sglang-llama3/ ), [v0.3 blog ](https://lmsys.org/blog/2024-09-04-sglang-v0-3/ )
2024-01-15 21:37:11 -08:00
2024-01-08 04:37:50 +00:00
## Roadmap
2024-09-22 01:50:37 -07:00
[Development Roadmap (2024 Q4) ](https://github.com/sgl-project/sglang/issues/1487 )
2024-01-08 04:37:50 +00:00
## Citation And Acknowledgment
2024-07-16 19:18:54 -07:00
Please cite our paper, [SGLang: Efficient Execution of Structured Language Model Programs ](https://arxiv.org/abs/2312.07104 ), if you find the project useful.
We also learned from the design and reused code from the following projects: [Guidance ](https://github.com/guidance-ai/guidance ), [vLLM ](https://github.com/vllm-project/vllm ), [LightLLM ](https://github.com/ModelTC/lightllm ), [FlashInfer ](https://github.com/flashinfer-ai/flashinfer ), [Outlines ](https://github.com/outlines-dev/outlines ), and [LMQL ](https://github.com/eth-sri/lmql ).