[PR #24036] [CLOSED] Greeting Message field for custom models #43118

Closed
opened 2026-04-25 14:48:28 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/24036
Author: @merilinsilva
Created: 4/23/2026
Status: Closed

Base: devHead: main


📝 Commits (10+)

📊 Changes

4 files changed (+87 additions, -4 deletions)

View changed files

📝 backend/open_webui/models/models.py (+6 -0)
📝 src/lib/apis/index.ts (+1 -0)
📝 src/lib/components/chat/Chat.svelte (+56 -4)
📝 src/lib/components/workspace/Models/ModelEditor.svelte (+24 -0)

📄 Description

Description

Introduces an optional Greeting Message field for custom models. This allows model creators to define a predefined opening message (e.g., "How can I help you with your legal documents today?") that appears automatically when a user starts a new chat with that specific model.

This improves "cold-start" UX by providing immediate context or instructions without requiring initial user input.

Added

  • Backend: Added an optional greeting field to the ModelMeta schema to store the message in the model's metadata.
  • Frontend: Added a "Greeting Message" textarea in the Workspace → Models editor, positioned under the System Prompt field.
  • Chat Logic: Implemented auto-injection of the greeting message when a new, empty chat is initialized with a configured model.

Changed

  • Message Handling: Updated chat initialization logic to correctly identify "new chats" even when a greeting message is present (refactored messages.length === 0 checks).
  • Parent ID Logic: Adjusted the message threading to ensure the first user message correctly initializes the chat on the backend by sending a null parent ID, even if a greeting is visually present in the frontend history.

Fixed

  • Fixed an issue where switching models in an empty chat would leave stale greeting messages from the previous model selection.

Changelog Entry

Added

  • Optional "Greeting Message" support for custom models in Workspace settings.

Changed

  • Refactored new-chat detection logic to support pre-populated assistant greetings.

Fixed

  • Corrected parent_id initialization for the first user message when starting a chat via a model greeting.

Additional Information

  • This change ensures that if a field is left empty, the behavior remains identical to the current "user-starts-first" flow.
  • Verified that switching between models with and without greetings updates the UI state correctly without polluting the chat history until the first user message is sent.

Screenshots or Videos

(Note: Be sure to attach a screenshot of the new field in the Model Editor and the greeting appearing in the Chat UI here!)

Contributor License Agreement


🔄 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/24036 **Author:** [@merilinsilva](https://github.com/merilinsilva) **Created:** 4/23/2026 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `main` --- ### 📝 Commits (10+) - [`fe6783c`](https://github.com/open-webui/open-webui/commit/fe6783c16699911c7be17392596d579333fb110c) Merge pull request #19030 from open-webui/dev - [`fc05e0a`](https://github.com/open-webui/open-webui/commit/fc05e0a6c5d39da60b603b4d520f800d6e36f748) Merge pull request #19405 from open-webui/dev - [`e3faec6`](https://github.com/open-webui/open-webui/commit/e3faec62c58e3a83d89aa3df539feacefa125e0c) Merge pull request #19416 from open-webui/dev - [`9899293`](https://github.com/open-webui/open-webui/commit/9899293f050ad50ae12024cbebee7e018acd851e) Merge pull request #19448 from open-webui/dev - [`140605e`](https://github.com/open-webui/open-webui/commit/140605e660b8186a7d5c79fb3be6ffb147a2f498) Merge pull request #19462 from open-webui/dev - [`6f1486f`](https://github.com/open-webui/open-webui/commit/6f1486ffd0cb288d0e21f41845361924e0d742b3) Merge pull request #19466 from open-webui/dev - [`d95f533`](https://github.com/open-webui/open-webui/commit/d95f533214e3fe5beb5e41ec1f349940bc4c7043) Merge pull request #19729 from open-webui/dev - [`a727153`](https://github.com/open-webui/open-webui/commit/a7271532f8a38da46785afcaa7e65f9a45e7d753) 0.6.43 (#20093) - [`6adde20`](https://github.com/open-webui/open-webui/commit/6adde203cd292a9e3af9c64a2ae36b603fed096a) Merge pull request #20394 from open-webui/dev - [`f9b0534`](https://github.com/open-webui/open-webui/commit/f9b0534e0c442631d1cb7205169588b9b6204179) Merge pull request #20522 from open-webui/dev ### 📊 Changes **4 files changed** (+87 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/models/models.py` (+6 -0) 📝 `src/lib/apis/index.ts` (+1 -0) 📝 `src/lib/components/chat/Chat.svelte` (+56 -4) 📝 `src/lib/components/workspace/Models/ModelEditor.svelte` (+24 -0) </details> ### 📄 Description ### Description Introduces an optional **Greeting Message** field for custom models. This allows model creators to define a predefined opening message (e.g., "How can I help you with your legal documents today?") that appears automatically when a user starts a new chat with that specific model. This improves "cold-start" UX by providing immediate context or instructions without requiring initial user input. ### Added - **Backend**: Added an optional `greeting` field to the `ModelMeta` schema to store the message in the model's metadata. - **Frontend**: Added a "Greeting Message" textarea in the **Workspace → Models** editor, positioned under the System Prompt field. - **Chat Logic**: Implemented auto-injection of the greeting message when a new, empty chat is initialized with a configured model. ### Changed - **Message Handling**: Updated chat initialization logic to correctly identify "new chats" even when a greeting message is present (refactored `messages.length === 0` checks). - **Parent ID Logic**: Adjusted the message threading to ensure the first user message correctly initializes the chat on the backend by sending a `null` parent ID, even if a greeting is visually present in the frontend history. ### Fixed - Fixed an issue where switching models in an empty chat would leave stale greeting messages from the previous model selection. --- # Changelog Entry ### Added - Optional "Greeting Message" support for custom models in Workspace settings. ### Changed - Refactored new-chat detection logic to support pre-populated assistant greetings. ### Fixed - Corrected `parent_id` initialization for the first user message when starting a chat via a model greeting. --- ### Additional Information - This change ensures that if a field is left empty, the behavior remains identical to the current "user-starts-first" flow. - Verified that switching between models with and without greetings updates the UI state correctly without polluting the chat history until the first user message is sent. ### Screenshots or Videos *(Note: Be sure to attach a screenshot of the new field in the Model Editor and the greeting appearing in the Chat UI here!)* ### Contributor License Agreement - [x] 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)](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-04-25 14:48:28 -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#43118