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/9537
**Author:** [@nkostop](https://github.com/nkostop)
**Created:** 2/6/2025
**Status:** ❌ Closed
**Base:** `dev` ← **Head:** `dev`
---
### 📝 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
**43 files changed** (+2039 additions, -93 deletions)
<details>
<summary>View changed files</summary>
📝 `backend/open_webui/apps/openai/main.py` (+5 -0)
📝 `src/app.css` (+7 -19)
📝 `src/app.html` (+1 -1)
📝 `src/lib/apis/openai/index.ts` (+22 -1)
📝 `src/lib/apis/streaming/index.ts` (+1 -1)
📝 `src/lib/components/OnBoarding.svelte` (+1 -1)
📝 `src/lib/components/chat/Artifacts.svelte` (+1 -1)
➕ `src/lib/components/chat/BottomArtifacts.svelte` (+250 -0)
📝 `src/lib/components/chat/Chat.svelte` (+36 -17)
📝 `src/lib/components/chat/ChatControls.svelte` (+12 -2)
📝 `src/lib/components/chat/ChatPlaceholder.svelte` (+1 -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` (+27 -5)
📝 `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` (+118 -5)
📝 `src/lib/components/chat/Messages/Markdown.svelte` (+3 -0)
📝 `src/lib/components/chat/Messages/Markdown/MarkdownInlineTokens.svelte` (+2 -1)
_...and 23 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>
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/9537
Author: @nkostop
Created: 2/6/2025
Status: ❌ Closed
Base:
dev← Head:dev📝 Commits (10+)
e45c6cecreate bottom & left artifact12d21e9font families & theme colorsc88a9a8Merge branch 'main' into dev94ddc4dlogo in sidebar79c2656logo css7317237bigger logo5b2aee9css on left artifacts9a912f2no scroll in sidebar only in chatsac394b0fix icon OIda4b82dbottomHistory & leftHistory📊 Changes
43 files changed (+2039 additions, -93 deletions)
View changed files
📝
backend/open_webui/apps/openai/main.py(+5 -0)📝
src/app.css(+7 -19)📝
src/app.html(+1 -1)📝
src/lib/apis/openai/index.ts(+22 -1)📝
src/lib/apis/streaming/index.ts(+1 -1)📝
src/lib/components/OnBoarding.svelte(+1 -1)📝
src/lib/components/chat/Artifacts.svelte(+1 -1)➕
src/lib/components/chat/BottomArtifacts.svelte(+250 -0)📝
src/lib/components/chat/Chat.svelte(+36 -17)📝
src/lib/components/chat/ChatControls.svelte(+12 -2)📝
src/lib/components/chat/ChatPlaceholder.svelte(+1 -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(+27 -5)📝
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(+118 -5)📝
src/lib/components/chat/Messages/Markdown.svelte(+3 -0)📝
src/lib/components/chat/Messages/Markdown/MarkdownInlineTokens.svelte(+2 -1)...and 23 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:
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.