From 851cc276850cb3322deeaf3115bc4f487803474e Mon Sep 17 00:00:00 2001 From: Classic298 <27028174+Classic298@users.noreply.github.com> Date: Sun, 6 Sep 2026 21:16:10 +0000 Subject: [PATCH] chore: say which slim limits stop the server and which do not The entry put refusing to start against all three limits. Only two behave that way: the database check raises while the module is read, and the storage provider is chosen by a call made as the module is read. The vector store is built on first use, so pointing slim at anything but PostgreSQL for it fails when something searches, not at startup. The sentence now separates them. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a74949a7f7..168aca886a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,7 +54,7 @@ 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 now holds its own data in PostgreSQL or SQLite, searches what it stores through PostgreSQL, and keeps files on its own disk, refusing to start where it is pointed at anything else, and it 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 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) - 🧱 **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)