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 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
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
fix: Bug fix or error correction
Changelog Entry
Description
This PR introduces a 'Save Conversation' button for temporary chats, allowing
users to retroactively save valuable conversations.
Added
A new 'Save Conversation' button has been added, appearing next to the
'Temporary Chat' indicator when messages exist in a temporary chat.
Implemented functionality to convert a temporary chat to a permanent chat
upon button click, with an auto-generated title from the first user message.
Included necessary translations for the new 'Save Conversation' button and
related UI elements across all supported languages.
Start a conversation (send at least one message) and verify the 'Save
Conversation' button appears.
Click the 'Save Conversation' button and verify the chat is saved
(becomes permanent) and the URL updates to a permanent chat URL.
Verify the newly saved chat appears in the sidebar conversation history.
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/16359
**Author:** [@Rain6435](https://github.com/Rain6435)
**Created:** 8/7/2025
**Status:** ❌ Closed
**Base:** `dev` ← **Head:** `feat/save-temporary-conversation`
---
### 📝 Commits (4)
- [`486f0a0`](https://github.com/open-webui/open-webui/commit/486f0a01f3434c2f696f1917e87554c22da7c5fd) feat: Add save conversation button for temporary chats
- [`50decd4`](https://github.com/open-webui/open-webui/commit/50decd408e64c91726f8c7fe404c08152be79e28) Update translation.json
- [`aceec1a`](https://github.com/open-webui/open-webui/commit/aceec1a00e5826f662b5d7fd5482a136c611f365) Update translation.json
- [`29fae12`](https://github.com/open-webui/open-webui/commit/29fae1211ddc2ab9c32a7c884b8b4046e9b1689d) Update translation.json
### 📊 Changes
**57 files changed** (+281 additions, -2 deletions)
<details>
<summary>View changed files</summary>
📝 `src/lib/components/chat/Navbar.svelte` (+59 -2)
📝 `src/lib/i18n/locales/ar-BH/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/ar/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/bg-BG/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/bn-BD/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/bo-TB/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/ca-ES/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/ceb-PH/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/cs-CZ/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/da-DK/translation.json` (+3 -0)
📝 `src/lib/i18n/locales/de-DE/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/dg-DG/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/el-GR/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/en-GB/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/en-US/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/es-ES/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/et-EE/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/eu-ES/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/fa-IR/translation.json` (+4 -0)
📝 `src/lib/i18n/locales/fi-FI/translation.json` (+4 -0)
_...and 37 more files_
</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 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
* **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
* **fix**: Bug fix or error correction
# Changelog Entry
### Description
This PR introduces a 'Save Conversation' button for temporary chats, allowing
users to retroactively save valuable conversations.
### Added
* A new 'Save Conversation' button has been added, appearing next to the
'Temporary Chat' indicator when messages exist in a temporary chat.
* Implemented functionality to convert a temporary chat to a permanent chat
upon button click, with an auto-generated title from the first user message.
* Included necessary translations for the new 'Save Conversation' button and
related UI elements across all supported languages.
### Screenshots
<img width="1330" height="348" alt="image" src="https://github.com/user-attachments/assets/0820d47e-6b06-4045-a792-c7836b1702bd" />
### Additional Information
Fixes #16169
### Test Plan
* Enable temporary chat mode.
* Start a conversation (send at least one message) and verify the 'Save
Conversation' button appears.
* Click the 'Save Conversation' button and verify the chat is saved
(becomes permanent) and the URL updates to a permanent chat URL.
* Verify the newly saved chat appears in the sidebar conversation history.
### Contributor License Agreement
By submitting this pull request, I confirm that I have read and fully agree to
the [Contributor License Agreement (CLA)](/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>
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/16359
Author: @Rain6435
Created: 8/7/2025
Status: ❌ Closed
Base:
dev← Head:feat/save-temporary-conversation📝 Commits (4)
486f0a0feat: Add save conversation button for temporary chats50decd4Update translation.jsonaceec1aUpdate translation.json29fae12Update translation.json📊 Changes
57 files changed (+281 additions, -2 deletions)
View changed files
📝
src/lib/components/chat/Navbar.svelte(+59 -2)📝
src/lib/i18n/locales/ar-BH/translation.json(+4 -0)📝
src/lib/i18n/locales/ar/translation.json(+4 -0)📝
src/lib/i18n/locales/bg-BG/translation.json(+4 -0)📝
src/lib/i18n/locales/bn-BD/translation.json(+4 -0)📝
src/lib/i18n/locales/bo-TB/translation.json(+4 -0)📝
src/lib/i18n/locales/ca-ES/translation.json(+4 -0)📝
src/lib/i18n/locales/ceb-PH/translation.json(+4 -0)📝
src/lib/i18n/locales/cs-CZ/translation.json(+4 -0)📝
src/lib/i18n/locales/da-DK/translation.json(+3 -0)📝
src/lib/i18n/locales/de-DE/translation.json(+4 -0)📝
src/lib/i18n/locales/dg-DG/translation.json(+4 -0)📝
src/lib/i18n/locales/el-GR/translation.json(+4 -0)📝
src/lib/i18n/locales/en-GB/translation.json(+4 -0)📝
src/lib/i18n/locales/en-US/translation.json(+4 -0)📝
src/lib/i18n/locales/es-ES/translation.json(+4 -0)📝
src/lib/i18n/locales/et-EE/translation.json(+4 -0)📝
src/lib/i18n/locales/eu-ES/translation.json(+4 -0)📝
src/lib/i18n/locales/fa-IR/translation.json(+4 -0)📝
src/lib/i18n/locales/fi-FI/translation.json(+4 -0)...and 37 more files
📄 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
devbranch.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:
missing semi-colons, etc.)
Changelog Entry
Description
This PR introduces a 'Save Conversation' button for temporary chats, allowing
users to retroactively save valuable conversations.
Added
'Temporary Chat' indicator when messages exist in a temporary chat.
upon button click, with an auto-generated title from the first user message.
related UI elements across all supported languages.
Screenshots
Additional Information
Fixes #16169
Test Plan
Conversation' button appears.
(becomes permanent) and the URL updates to a permanent chat URL.
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.