From d49ff95f7fd446f1ddaf51b11773ebbaa4906f2b Mon Sep 17 00:00:00 2001 From: Aaron Pham <29749331+aarnphm@users.noreply.github.com> Date: Fri, 21 Jul 2023 17:59:21 +0000 Subject: [PATCH] infra: prepare for release 0.2.5 [generated] [skip ci] Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com> --- CHANGELOG.md | 14 ++++++++++++++ changelog.d/130.feature.md | 7 ------- package.json | 2 +- src/openllm/__about__.py | 2 +- 4 files changed, 16 insertions(+), 9 deletions(-) delete mode 100644 changelog.d/130.feature.md diff --git a/CHANGELOG.md b/CHANGELOG.md index a6f725b8..3e9ed948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,20 @@ This changelog is managed by towncrier and is compiled at release time. +## [0.2.5](https://github.com/bentoml/openllm/tree/v0.2.5) + +### Features + +- Added support for sending arguments via CLI. + + ```python + openllm query --endpoint localhost:3000 "What is the difference between noun and pronoun?" --sampling-params temperature 0.84 + ``` + + Fixed llama2 qlora training script to save unquantized weights + [#130](https://github.com/bentoml/openllm/issues/130) + + ## [0.2.4](https://github.com/bentoml/openllm/tree/v0.2.4) No significant changes. diff --git a/changelog.d/130.feature.md b/changelog.d/130.feature.md deleted file mode 100644 index d71fc09f..00000000 --- a/changelog.d/130.feature.md +++ /dev/null @@ -1,7 +0,0 @@ -Added support for sending arguments via CLI. - -```python -openllm query --endpoint localhost:3000 "What is the difference between noun and pronoun?" --sampling-params temperature 0.84 -``` - -Fixed llama2 qlora training script to save unquantized weights diff --git a/package.json b/package.json index 4081d254..46ba2ef1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openllm", - "version": "0.2.5.dev0", + "version": "0.2.5", "description": "OpenLLM: Your one stop-and-go solution for serving Large Language Model", "repository": "git@github.com:llmsys/OpenLLM.git", "author": "Aaron Pham <29749331+aarnphm@users.noreply.github.com>", diff --git a/src/openllm/__about__.py b/src/openllm/__about__.py index c0b3b514..d705840b 100644 --- a/src/openllm/__about__.py +++ b/src/openllm/__about__.py @@ -11,4 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.2.5.dev0" +__version__ = "0.2.5"