diff --git a/docs/features/playgroundbeta/chat.md b/docs/features/playground/chat.md similarity index 100% rename from docs/features/playgroundbeta/chat.md rename to docs/features/playground/chat.md diff --git a/docs/features/playgroundbeta/completions.md b/docs/features/playground/completions.md similarity index 100% rename from docs/features/playgroundbeta/completions.md rename to docs/features/playground/completions.md diff --git a/docs/features/playgroundbeta/index.mdx b/docs/features/playground/index.mdx similarity index 100% rename from docs/features/playgroundbeta/index.mdx rename to docs/features/playground/index.mdx diff --git a/docs/features/usergroups/assign-user.md b/docs/features/user-groups/assign-user.md similarity index 100% rename from docs/features/usergroups/assign-user.md rename to docs/features/user-groups/assign-user.md diff --git a/docs/features/usergroups/default-perms.md b/docs/features/user-groups/default-perms.md similarity index 100% rename from docs/features/usergroups/default-perms.md rename to docs/features/user-groups/default-perms.md diff --git a/docs/features/usergroups/index.mdx b/docs/features/user-groups/index.mdx similarity index 100% rename from docs/features/usergroups/index.mdx rename to docs/features/user-groups/index.mdx diff --git a/docs/features/usergroups/providing-access.md b/docs/features/user-groups/providing-access.md similarity index 100% rename from docs/features/usergroups/providing-access.md rename to docs/features/user-groups/providing-access.md diff --git a/docs/features/usergroups/usergroup-perms.md b/docs/features/user-groups/usergroup-perms.md similarity index 100% rename from docs/features/usergroups/usergroup-perms.md rename to docs/features/user-groups/usergroup-perms.md diff --git a/docs/features/whitelist.md b/docs/features/whitelist.md deleted file mode 100644 index 343f2b1..0000000 --- a/docs/features/whitelist.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -sidebar_position: 12 -title: "📝 Model Whitelisting" ---- - -Open WebUI allows you to filter specific models for use in your instance. This feature is especially useful for administrators who want to control which models are available to users. Filtering can be done through the WebUI or by adding environment variables to the backend. - -## Filtering via WebUI - -![Model Filter Configuration](/img/tutorial_model_filter.png) - -1. Go to **Admin Panel > Settings > Users**. -2. In the **Manage Models** section, you can enable or disable the model whitelisting feature, and add or remove models from the whitelist. -3. Click **Save** to apply your changes. - -## Filtering via Environment Variables - -You can also whitelist models by adding environment variables to the backend. This method is useful for automated deployments and can be done by adding the following environment variables to your `docker run` command: - -```bash --e ENABLE_MODEL_FILTER=True \ --e MODEL_FILTER_LIST="llama2:13b;mistral:latest;gpt-3.5-turbo" \ -``` - -In this example, the `ENABLE_MODEL_FILTER` variable is set to `True` to enable the feature, and the `MODEL_FILTER_LIST` variable lists the models to be whitelisted. The format for the `MODEL_FILTER_LIST` variable is `model_name:version;model_name:version;...`.