Skip to content

Commit f6bfe3a

Browse files
authored
Release 0.1.11 (#134)
1 parent e095b16 commit f6bfe3a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ The core features of SGLang include:
88
- **A Flexible Front-End Language**: This allows for easy programming of LLM applications with multiple chained generation calls, advanced prompting techniques, control flow, multiple modalities, parallelism, and external interaction.
99
- **A High-Performance Runtime with RadixAttention**: This feature significantly accelerates the execution of complex LLM programs by automatic KV cache reuse across multiple calls. It also supports other common techniques like continuous batching and tensor parallelism.
1010

11+
## News
12+
- [2024/01] 🔥 SGLang powers the serving of the offical LLaVA v1.6 release demo ([blog](https://llava-vl.github.io/blog/2024-01-30-llava-1-6/)).
13+
- [2024/01] SGLang provides up to 5x faster inference with RadixAttention ([blog](https://lmsys.org/blog/2024-01-17-sglang/)).
14+
1115
## Contents
1216
- [Install](#install)
1317
- [Quick Start](#quick-start)

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sglang"
7-
version = "0.1.10"
7+
version = "0.1.11"
88
description = "A structured generation langauge for LLMs."
99
readme = "README.md"
1010
requires-python = ">=3.8"

python/sglang/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.10"
1+
__version__ = "0.1.11"
22

33
from sglang.api import *
44
from sglang.global_config import global_config

0 commit comments

Comments
 (0)