[PR #11653] [CLOSED] sync #22774

Closed
opened 2026-04-20 04:23:28 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/11653
Author: @nkostop
Created: 3/13/2025
Status: Closed

Base: mainHead: main


📝 Commits (10+)

📊 Changes

44 files changed (+2192 additions, -103 deletions)

View changed files

📝 backend/open_webui/routers/openai.py (+6 -0)
📝 src/app.css (+7 -19)
📝 src/app.html (+1 -1)
📝 src/lib/apis/openai/index.ts (+26 -1)
📝 src/lib/apis/streaming/index.ts (+1 -1)
📝 src/lib/components/OnBoarding.svelte (+1 -1)
📝 src/lib/components/chat/Artifacts.svelte (+8 -7)
src/lib/components/chat/BottomArtifacts.svelte (+248 -0)
📝 src/lib/components/chat/Chat.svelte (+35 -20)
📝 src/lib/components/chat/ChatControls.svelte (+12 -4)
📝 src/lib/components/chat/ChatPlaceholder.svelte (+1 -3)
📝 src/lib/components/chat/ContentRenderer/FloatingButtons.svelte (+6 -3)
src/lib/components/chat/LeftArtifact.svelte (+257 -0)
📝 src/lib/components/chat/MessageInput.svelte (+4 -4)
📝 src/lib/components/chat/Messages.svelte (+1 -0)
📝 src/lib/components/chat/Messages/CodeBlock.svelte (+28 -1)
📝 src/lib/components/chat/Messages/CodeExecutionModal.svelte (+2 -0)
📝 src/lib/components/chat/Messages/CodeExecutions.svelte (+6 -1)
📝 src/lib/components/chat/Messages/ContentRenderer.svelte (+127 -5)
📝 src/lib/components/chat/Messages/Markdown.svelte (+2 -0)

...and 24 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 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

  • [Concisely describe the changes made in this pull request, including any relevant motivation and impact (e.g., fixing a bug, adding a feature, or improving performance)]

Added

  • [List any new features, functionalities, or additions]

Changed

  • [List any changes, updates, refactorings, or optimizations]

Deprecated

  • [List any deprecated functionality or features that have been removed]

Removed

  • [List any removed features, files, or functionalities]

Fixed

  • [List any fixes, corrections, or bug fixes]

Security

  • [List any new or updated security-related changes, including vulnerability fixes]

Breaking Changes

  • BREAKING CHANGE: [List any breaking changes affecting compatibility or functionality]

Additional Information

  • [Insert any additional context, notes, or explanations for the changes]
    • [Reference any related issues, commits, or other relevant information]

Screenshots or Videos

  • [Attach any relevant screenshots or videos demonstrating the changes]

🔄 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/11653 **Author:** [@nkostop](https://github.com/nkostop) **Created:** 3/13/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`e45c6ce`](https://github.com/open-webui/open-webui/commit/e45c6ce3df101db50daf64a228bd4e80be87df54) create bottom & left artifact - [`12d21e9`](https://github.com/open-webui/open-webui/commit/12d21e9c3b6dc4d5bf2ef39e00179db778d1b41b) font families & theme colors - [`c88a9a8`](https://github.com/open-webui/open-webui/commit/c88a9a81aa22146ee5dc8f78fd59f6f20a421de5) Merge branch 'main' into dev - [`94ddc4d`](https://github.com/open-webui/open-webui/commit/94ddc4de1df19b52324316f1dd61aefb87e04e1b) logo in sidebar - [`79c2656`](https://github.com/open-webui/open-webui/commit/79c2656dcd5c4e1754381f1381ccd865acae5499) logo css - [`7317237`](https://github.com/open-webui/open-webui/commit/73172370a294b125215441762462f24d0ad744d4) bigger logo - [`5b2aee9`](https://github.com/open-webui/open-webui/commit/5b2aee966acabd36b46af001e844d8723d5a488d) css on left artifacts - [`9a912f2`](https://github.com/open-webui/open-webui/commit/9a912f2d383ac96e79eef5da8d78c6e98c2fcf20) no scroll in sidebar only in chats - [`ac394b0`](https://github.com/open-webui/open-webui/commit/ac394b0be1bc15096b7942a0da71420562e05ba1) fix icon OI - [`da4b82d`](https://github.com/open-webui/open-webui/commit/da4b82db071f0a15b3dd07aa4221e85093aae4a7) bottomHistory & leftHistory ### 📊 Changes **44 files changed** (+2192 additions, -103 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/routers/openai.py` (+6 -0) 📝 `src/app.css` (+7 -19) 📝 `src/app.html` (+1 -1) 📝 `src/lib/apis/openai/index.ts` (+26 -1) 📝 `src/lib/apis/streaming/index.ts` (+1 -1) 📝 `src/lib/components/OnBoarding.svelte` (+1 -1) 📝 `src/lib/components/chat/Artifacts.svelte` (+8 -7) ➕ `src/lib/components/chat/BottomArtifacts.svelte` (+248 -0) 📝 `src/lib/components/chat/Chat.svelte` (+35 -20) 📝 `src/lib/components/chat/ChatControls.svelte` (+12 -4) 📝 `src/lib/components/chat/ChatPlaceholder.svelte` (+1 -3) 📝 `src/lib/components/chat/ContentRenderer/FloatingButtons.svelte` (+6 -3) ➕ `src/lib/components/chat/LeftArtifact.svelte` (+257 -0) 📝 `src/lib/components/chat/MessageInput.svelte` (+4 -4) 📝 `src/lib/components/chat/Messages.svelte` (+1 -0) 📝 `src/lib/components/chat/Messages/CodeBlock.svelte` (+28 -1) 📝 `src/lib/components/chat/Messages/CodeExecutionModal.svelte` (+2 -0) 📝 `src/lib/components/chat/Messages/CodeExecutions.svelte` (+6 -1) 📝 `src/lib/components/chat/Messages/ContentRenderer.svelte` (+127 -5) 📝 `src/lib/components/chat/Messages/Markdown.svelte` (+2 -0) _...and 24 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:** - [ ] **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](https://keepachangelog.com/) is added at the bottom of the PR description. - [ ] **Documentation:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/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 - [Concisely describe the changes made in this pull request, including any relevant motivation and impact (e.g., fixing a bug, adding a feature, or improving performance)] ### Added - [List any new features, functionalities, or additions] ### Changed - [List any changes, updates, refactorings, or optimizations] ### Deprecated - [List any deprecated functionality or features that have been removed] ### Removed - [List any removed features, files, or functionalities] ### Fixed - [List any fixes, corrections, or bug fixes] ### Security - [List any new or updated security-related changes, including vulnerability fixes] ### Breaking Changes - **BREAKING CHANGE**: [List any breaking changes affecting compatibility or functionality] --- ### Additional Information - [Insert any additional context, notes, or explanations for the changes] - [Reference any related issues, commits, or other relevant information] ### Screenshots or Videos - [Attach any relevant screenshots or videos demonstrating the changes] --- <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-20 04:23: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#22774