chore: soften the slim backend entry and cover the browser speech runtime

This commit is contained in:
Classic298 2026-09-06 21:22:16 +00:00
parent 851cc27685
commit 31fad36d69
No known key found for this signature in database

View file

@ -54,9 +54,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 🔗 **Default suggestions answer with an object.** Saving the default prompt suggestions now answers with the suggestions and their per-language wording together rather than the bare list it returned before, which anything calling it directly will need to read. [Commit](https://github.com/open-webui/open-webui/commit/7b6562e3358956ec71eed05352538a646d047734)
- 🖼️ **Default picture without access.** A model picture now falls back to the standard logo wherever the viewer holds no grant on that model, such as a model reply shown to the other members of a channel, or the admin analytics and evaluation pages with the access bypass switched off. [#29700](https://github.com/open-webui/open-webui/pull/29700)
- 🪶 **Slim leaves the heavy work outside.** An instance built slim starts and holds a conversation with nothing extra configured, but the features that leaned on the local models it no longer carries, knowledge search, document extraction past plain text and speech, each ask for a service of their own the first time they are used, and it can no longer be built together with the graphics card or Ollama options. [Commit](https://github.com/open-webui/open-webui/commit/cb942bb94c8dc7941336088fb3392e2398ff56c1)
- 🧮 **Slim keeps to one set of backends.** An instance built slim holds its own data in PostgreSQL or SQLite and keeps files on its own disk, refusing to start where it is pointed at anything else, searches what it stores through PostgreSQL alone, and can no longer drive a browser to read a page. [Commit](https://github.com/open-webui/open-webui/commit/d27aa72ab4a7b5632b4ad49e8467081ad3d7ebb4)
- 🧮 **Slim keeps to one set of backends.** An instance built slim keeps its data in SQLite or PostgreSQL and its files on its own disk, which is what it does out of the box; a cloud storage bucket, another database engine or AWS IAM database logins now ask for the standard image. It searches what it stores through PostgreSQL alone, and can no longer drive a browser to read a page. [Commit](https://github.com/open-webui/open-webui/commit/d27aa72ab4a7b5632b4ad49e8467081ad3d7ebb4)
- 🧱 **Building the image needs BuildKit.** Building Open WebUI yourself now takes the BuildKit builder and reach to the registry the install tool is fetched from, next to the package index it already needed. [#29728](https://github.com/open-webui/open-webui/pull/29728)
- 🧾 **Tools declare what they import.** A tool or function importing a package that was only ever present by accident, among them nltk, pymongo and the Google Drive client, now has to name it in its requirements, or have it installed into the image where the instance cannot reach the package index. [#29725](https://github.com/open-webui/open-webui/pull/29725), [#29726](https://github.com/open-webui/open-webui/pull/29726)
- 🔊 **Browser speech loads its engine from the instance.** The WebAssembly runtime behind on-device text-to-speech is now loaded from the files served alongside the interface rather than from a copy carried inside its JavaScript. [Commit](https://github.com/open-webui/open-webui/commit/f1c803d36bae9d429eb630ad26853c9d939262b5)
## [0.11.3] - 2026-08-31