[PR #17937] [CLOSED] feat: add "Clone as Workspace Model" option in model's dropdown menu of admin settings (refac) #79480

Closed
opened 2026-05-13 13:20:59 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/17937
Author: @silentoplayz
Created: 9/30/2025
Status: Closed

Base: devHead: clone-as-workspace-model


📝 Commits (3)

  • 214e6d6 feat: add "Clone as Workspace Model" option in model's dropdown menu
  • b3bbda2 refac
  • 186860d Merge branch 'main' into clone-as-workspace-model

📊 Changes

3 files changed (+60 additions, -14 deletions)

View changed files

📝 src/lib/components/admin/Settings/Models.svelte (+20 -0)
📝 src/lib/components/admin/Settings/Models/ModelMenu.svelte (+14 -1)
📝 src/routes/(app)/workspace/models/create/+page.svelte (+26 -13)

📄 Description

Pull Request Checklist

  • Target branch: Please verify that the pull request targets the dev branch.
  • Description: Provide a concise description of the changes made in this pull request.
  • Changelog: Ensure a changelog entry following the format of Keep a Changelog is added at the bottom of the PR description.
  • Documentation: Have you updated relevant documentation Open WebUI Docs, or other documentation sources?
  • Dependencies: Are there any new dependencies? Have you updated the dependency versions in the documentation?
  • Testing: Have you written and run sufficient tests to validate the changes?
  • Code review: Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
  • Prefix: To clearly categorize this pull request, prefix the pull request title using one of the following:
    • BREAKING CHANGE: Significant changes that may affect compatibility
    • build: Changes that affect the build system or external dependencies
    • ci: Changes to our continuous integration processes or workflows
    • chore: Refactor, cleanup, or other non-functional code changes
    • docs: Documentation update or addition
    • feat: Introduces a new feature or enhancement to the codebase
    • fix: Bug fix or error correction
    • i18n: Internationalization or localization changes
    • perf: Performance improvement
    • refactor: Code restructuring for better maintainability, readability, or scalability
    • style: Changes that do not affect the meaning of the code (white space, formatting, missing semi-colons, etc.)
    • test: Adding missing tests or correcting existing tests
    • WIP: Work in progress, a temporary label for incomplete or ongoing work

Changelog Entry

Description

  • This pull request introduces a "Clone as Workspace Model" feature, allowing admins to quickly create a new workspace model by quickly allowing users to create a new workspace model from an existing base model from the admin settings page. This streamlines the process of creating customized model configurations based on existing base models.

Added

  • A "Clone as Workspace Model" option to the model context menu in Settings > Models.
  • Logic to navigate to the workspace model creation page with the model pre-selected and model ID pre-filled with the data from the selected base model.

Changed

  • The workspace model creation page (/workspace/models/create) now accepts model data via a URL query parameter to pre-populate the form fields.
  • The ModelMenu.svelte component was updated to include the new "Clone" option.
  • The Models.svelte component was updated to handle the navigation logic for the cloning feature.

Additional Information

Screenshots or Videos

image image image

Contributor License Agreement

By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/17937 **Author:** [@silentoplayz](https://github.com/silentoplayz) **Created:** 9/30/2025 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `clone-as-workspace-model` --- ### 📝 Commits (3) - [`214e6d6`](https://github.com/open-webui/open-webui/commit/214e6d68d2b3790db82cc7f1a951dbdf41dfff6e) feat: add "Clone as Workspace Model" option in model's dropdown menu - [`b3bbda2`](https://github.com/open-webui/open-webui/commit/b3bbda21d84c770253bc7073b940a0e92fff6c18) refac - [`186860d`](https://github.com/open-webui/open-webui/commit/186860d38aaedfb7cc3016e0e5b3798a90c1ea2b) Merge branch 'main' into clone-as-workspace-model ### 📊 Changes **3 files changed** (+60 additions, -14 deletions) <details> <summary>View changed files</summary> 📝 `src/lib/components/admin/Settings/Models.svelte` (+20 -0) 📝 `src/lib/components/admin/Settings/Models/ModelMenu.svelte` (+14 -1) 📝 `src/routes/(app)/workspace/models/create/+page.svelte` (+26 -13) </details> ### 📄 Description # Pull Request Checklist - [X] **Target branch:** Please verify that the pull request targets the `dev` branch. - [X] **Description:** Provide a concise description of the changes made in this pull request. - [X] **Changelog:** Ensure a changelog entry following the format of [Keep a Changelog](https://keepachangelog.com/) is added at the bottom of the PR description. - [X] **Documentation:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs), or other documentation sources? - [X] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation? - [X] **Testing:** Have you written and run sufficient tests to validate the changes? - [X] **Code review:** Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards? - [X] **Prefix:** To clearly categorize this pull request, prefix the pull request title using one of the following: - **BREAKING CHANGE**: Significant changes that may affect compatibility - **build**: Changes that affect the build system or external dependencies - **ci**: Changes to our continuous integration processes or workflows - **chore**: Refactor, cleanup, or other non-functional code changes - **docs**: Documentation update or addition - **feat**: Introduces a new feature or enhancement to the codebase - **fix**: Bug fix or error correction - **i18n**: Internationalization or localization changes - **perf**: Performance improvement - **refactor**: Code restructuring for better maintainability, readability, or scalability - **style**: Changes that do not affect the meaning of the code (white space, formatting, missing semi-colons, etc.) - **test**: Adding missing tests or correcting existing tests - **WIP**: Work in progress, a temporary label for incomplete or ongoing work # Changelog Entry ### Description - This pull request introduces a "Clone as Workspace Model" feature, allowing admins to quickly create a new workspace model by quickly allowing users to create a new workspace model from an existing base model from the admin settings page. This streamlines the process of creating customized model configurations based on existing base models. ### Added - A "Clone as Workspace Model" option to the model context menu in Settings > Models. - Logic to navigate to the workspace model creation page with the model pre-selected and model ID pre-filled with the data from the selected base model. ### Changed - The workspace model creation page (`/workspace/models/create`) now accepts model data via a URL query parameter to pre-populate the form fields. - The `ModelMenu.svelte` component was updated to include the new "Clone" option. - The `Models.svelte` component was updated to handle the navigation logic for the cloning feature. ### Additional Information - This feature is designed to improve the user experience for administrators who frequently create new workspace models with similar configurations. - Related discussion of mine opened on Mar 15, 2024 - https://github.com/open-webui/open-webui/discussions/2239 - Related comment from maintainer of the repo - https://github.com/open-webui/open-webui/pull/17868#issuecomment-3345097464 ### Screenshots or Videos <img width="2300" height="873" alt="image" src="https://github.com/user-attachments/assets/6a0cce3a-dd16-4336-87ec-b4b8876bd929" /> <img width="2308" height="289" alt="image" src="https://github.com/user-attachments/assets/16405adc-4fb4-4b35-939d-b7429a6b29d3" /> <img width="2296" height="1159" alt="image" src="https://github.com/user-attachments/assets/3950b2b5-ab60-4364-a922-87b7ba054d70" /> ### Contributor License Agreement By submitting this pull request, I confirm that I have read and fully agree to the [Contributor License Agreement (CLA)](https://github.com/open-webui/open-webui/blob/main/CONTRIBUTOR_LICENSE_AGREEMENT), and I am providing my contributions under its terms. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-05-13 13:20:59 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#79480