[PR #9186] [CLOSED] feat: Add "Share Model" functionality to selected model view #37960

Closed
opened 2026-04-25 11:12:47 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/9186
Author: @taylorwilsdon
Created: 1/31/2025
Status: Closed

Base: devHead: add_share_model


📝 Commits (10+)

  • 891d58a feat: add share button to model selector entries
  • a530235 style: add margin between external tag and share icon
  • f0b6b11 Implement "share link to this model" functionality from model selector
  • 85aebba Merge branch 'dev' of github.com:taylorwilsdon/open-webui into add_model_share
  • cee350d Move share link to Model view
  • 797a42e Add share model functionality in currently selected model view
  • a96d727 Update .gitignore
  • 4d160a5 Update Selector.svelte
  • 345bd41 Update Selector.svelte
  • af1d78a Update Selector.svelte

📊 Changes

1 file changed (+34 additions, -0 deletions)

View changed files

📝 src/lib/components/chat/ModelSelector.svelte (+34 -0)

📄 Description

Pull Request Checklist

Note to first-time contributors: Please open a discussion post in Discussions and describe your changes before submitting a pull request.

Before submitting, make sure you've checked the following:

  • 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 for validating 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 cleary 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

  • feat: add share button to model selector entries
  • This new functionality presents a quick action link to copy the query string of the model to the clipboard to make it easy to share a specific model, especially a customized one. Screenshot:

Added

  • New share button in selected model view.

Changed

  • n/a

Deprecated

  • n/a

Removed

  • n/a

Fixed

  • n/a

Security

  • n/a

Breaking Changes

  • n/a

Additional Information

Screenshots or Videos

image Video: https://github.com/user-attachments/assets/b3e25864-45e6-485e-9be6-31b2ae1a8c20

🔄 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/9186 **Author:** [@taylorwilsdon](https://github.com/taylorwilsdon) **Created:** 1/31/2025 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `add_share_model` --- ### 📝 Commits (10+) - [`891d58a`](https://github.com/open-webui/open-webui/commit/891d58a8f033f3bce8b4921d0d205ef232e6a080) feat: add share button to model selector entries - [`a530235`](https://github.com/open-webui/open-webui/commit/a530235271b98cdddc14da7bb87a369496168cb2) style: add margin between external tag and share icon - [`f0b6b11`](https://github.com/open-webui/open-webui/commit/f0b6b1152a25e6750cb5adfcca990a104f85cff2) Implement "share link to this model" functionality from model selector - [`85aebba`](https://github.com/open-webui/open-webui/commit/85aebba1b091cf53c7ce72e48b2dd242e2721524) Merge branch 'dev' of github.com:taylorwilsdon/open-webui into add_model_share - [`cee350d`](https://github.com/open-webui/open-webui/commit/cee350dc0898684d595b04cbfefd7a36841aa5ae) Move share link to Model view - [`797a42e`](https://github.com/open-webui/open-webui/commit/797a42ed264eb559fac69fd344e4fea85d27ea06) Add share model functionality in currently selected model view - [`a96d727`](https://github.com/open-webui/open-webui/commit/a96d727509b77beede46da5e3ff0bcf8739c8489) Update .gitignore - [`4d160a5`](https://github.com/open-webui/open-webui/commit/4d160a514a5020472d35ad809de88f16cdb90e78) Update Selector.svelte - [`345bd41`](https://github.com/open-webui/open-webui/commit/345bd4121761b765c542a39106955dc3de610c07) Update Selector.svelte - [`af1d78a`](https://github.com/open-webui/open-webui/commit/af1d78ac4348850a986588b85373b567a295cece) Update Selector.svelte ### 📊 Changes **1 file changed** (+34 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `src/lib/components/chat/ModelSelector.svelte` (+34 -0) </details> ### 📄 Description # Pull Request Checklist ### Note to first-time contributors: Please open a discussion post in [Discussions](https://github.com/open-webui/open-webui/discussions) and describe your changes before submitting a pull request. **Before submitting, make sure you've checked the following:** - [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 for validating 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 cleary 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 - feat: add share button to model selector entries - This new functionality presents a quick action link to copy the query string of the model to the clipboard to make it easy to share a specific model, especially a customized one. Screenshot: ### Added - New share button in selected model view. ### Changed - n/a ### Deprecated - n/a ### Removed - n/a ### Fixed - n/a ### Security - n/a ### Breaking Changes - n/a --- ### Additional Information - [Insert any additional context, notes, or explanations for the changes] - [Reference any related issues, commits, or other relevant information] Issue ref https://github.com/open-webui/open-webui/discussions/9076 ### Screenshots or Videos <img width="859" alt="image" src="https://github.com/user-attachments/assets/a6b8346e-fccb-4ae7-b168-95ac7b5a68d9" /> Video: https://github.com/user-attachments/assets/b3e25864-45e6-485e-9be6-31b2ae1a8c20 --- <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-04-25 11:12:47 -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#37960