Skip to content

Commit

Permalink
infra: prepare for release 0.4.4 [generated] [skip ci]
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
  • Loading branch information
aarnphm committed Nov 12, 2023
1 parent c3416c0 commit b1f3a72
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 17 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,26 @@ This changelog is managed by towncrier and is compiled at release time.

<!-- towncrier release notes start -->

## [0.4.4](https://github.com/bentoml/openllm/tree/v0.4.4)

### Features

- Certain warnings can now be disabled with `OPENLLM_DISABLE_WARNINGS=True` in the environment.

`openllm.LLM` now also brings `embedded` mode. By default this is True. if `embedded=True`, then
the model will be loaded eagerly. This should only be used during developmen

```python

import openllm

llm = openllm.LLM('HuggingFaceH4/zephyr-7b-beta', backend='vllm', embedded=True)
```

The default behaviour of loading the model first time when `llm.generate` or `llm.generate_iterator` is unchanged.
`embedded` option is mainly for backward compatibility and more explicit definition.
[#618](https://github.com/bentoml/openllm/issues/618)

## [0.4.3](https://github.com/bentoml/openllm/tree/v0.4.3)

### Features
Expand Down
14 changes: 0 additions & 14 deletions changelog.d/618.feature.md

This file was deleted.

2 changes: 1 addition & 1 deletion external/clojure/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openllm-clojure-ui",
"version": "",
"version": "0.4.4",
"description": "OpenLLM Clojure UI",
"repository": {
"url": "git@github.com:bentoml/OpenLLM.git",
Expand Down
2 changes: 1 addition & 1 deletion openllm-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bentoml/openllm-node",
"version": "0.4.4.dev0",
"version": "0.4.4",
"description": "NodeJS library for OpenLLM",
"type": "module",
"repository": {
Expand Down
20 changes: 20 additions & 0 deletions openllm-python/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bentoml/openllm-monorepo",
"version": "0.4.4.dev0",
"version": "0.4.4",
"description": "OpenLLM: Operating LLMs in production",
"author": "Aaron Pham <29749331+aarnphm@users.noreply.github.com>",
"license": "Apache-2.0",
Expand Down

0 comments on commit b1f3a72

Please sign in to comment.