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 model selector
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]
Screenshots or Videos
🔄 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/9056
**Author:** [@taylorwilsdon](https://github.com/taylorwilsdon)
**Created:** 1/28/2025
**Status:** ❌ Closed
**Base:** `dev` ← **Head:** `add_model_share`
---
### 📝 Commits (10+)
- [`568dbc5`](https://github.com/open-webui/open-webui/commit/568dbc545cdd7e1d08e0db7851bace82db04a418) Merge pull request #8351 from open-webui/dev
- [`36b9bce`](https://github.com/open-webui/open-webui/commit/36b9bcee0f70868f2a74234a419bec36f993fe00) Merge pull request #8770 from open-webui/dev
- [`e3ae30e`](https://github.com/open-webui/open-webui/commit/e3ae30e42f5283c9ca9a1797485021068c87f7a9) Merge pull request #8776 from open-webui/dev
- [`9dd45dd`](https://github.com/open-webui/open-webui/commit/9dd45ddf7c5cea09be434278edf68f3fdb23dcfd) Merge pull request #8779 from open-webui/dev
- [`6c8d68b`](https://github.com/open-webui/open-webui/commit/6c8d68b6fc4ba25f02627c21552a726c0bd2b36e) Merge pull request #8793 from open-webui/dev
- [`b72150c`](https://github.com/open-webui/open-webui/commit/b72150c881955721a63ae7f4ea1b9ea293816fc1) Merge pull request #8835 from open-webui/dev
- [`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
### 📊 Changes
**1 file changed** (+33 additions, -5 deletions)
<details>
<summary>View changed files</summary>
📝 `src/lib/components/chat/ModelSelector/Selector.svelte` (+33 -5)
</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 model selector
### 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]
### Screenshots or Videos
<img width="859" alt="image" src="https://github.com/user-attachments/assets/a6b8346e-fccb-4ae7-b168-95ac7b5a68d9" />
---
<sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/9056
Author: @taylorwilsdon
Created: 1/28/2025
Status: ❌ Closed
Base:
dev← Head:add_model_share📝 Commits (10+)
568dbc5Merge pull request #8351 from open-webui/dev36b9bceMerge pull request #8770 from open-webui/deve3ae30eMerge pull request #8776 from open-webui/dev9dd45ddMerge pull request #8779 from open-webui/dev6c8d68bMerge pull request #8793 from open-webui/devb72150cMerge pull request #8835 from open-webui/dev891d58afeat: add share button to model selector entriesa530235style: add margin between external tag and share iconf0b6b11Implement "share link to this model" functionality from model selector85aebbaMerge branch 'dev' of github.com:taylorwilsdon/open-webui into add_model_share📊 Changes
1 file changed (+33 additions, -5 deletions)
View changed files
📝
src/lib/components/chat/ModelSelector/Selector.svelte(+33 -5)📄 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:
devbranch.Changelog Entry
Description
Added
Changed
Deprecated
Removed
Fixed
Security
Breaking Changes
Additional Information
Screenshots or Videos
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.