Skip to content

Commit

Permalink
Update version to v0.1.14 (sgl-project#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
merrymercy authored Mar 22, 2024
1 parent e2b2f0a commit 51104cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/quick_start/anthropic_example_complete.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def few_shot_qa(s, question):
\n\nAssistant: Rome
""")
s += "\n\nHuman: " + question + "\n"
s += "\n\nAssistant:" + sgl.gen("answer", stop="\\n", temperature=0)
s += "\n\nAssistant:" + sgl.gen("answer", temperature=0)


def single():
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sglang"
version = "0.1.13"
version = "0.1.14"
description = "A structured generation langauge for LLMs."
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion python/sglang/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.13"
__version__ = "0.1.14"

from sglang.api import *
from sglang.global_config import global_config

0 comments on commit 51104cd

Please sign in to comment.