mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-07 11:28:35 -05:00
[PR #23052] feat: channel calls #42628
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/open-webui/open-webui/pull/23052
Author: @micahdbak
Created: 3/26/2026
Status: 🔄 Open
Base:
dev← Head:dev📝 Commits (1)
d7350f5feat: channel calls📊 Changes
25 files changed (+1912 additions, -3 deletions)
View changed files
📝
backend/open_webui/config.py(+6 -0)📝
backend/open_webui/main.py(+5 -0)📝
backend/open_webui/routers/configs.py(+35 -0)📝
backend/open_webui/socket/main.py(+324 -1)📝
backend/open_webui/socket/utils.py(+283 -1)📝
backend/requirements.txt(+3 -0)📝
src/lib/apis/configs/index.ts(+57 -0)📝
src/lib/components/admin/Settings/General.svelte(+84 -1)➕
src/lib/components/channel/ChannelCall.svelte(+59 -0)➕
src/lib/components/channel/ChannelCall/Connection.svelte(+167 -0)➕
src/lib/components/channel/ChannelCall/Connection/base.ts(+56 -0)➕
src/lib/components/channel/ChannelCall/Connection/index.ts(+19 -0)➕
src/lib/components/channel/ChannelCall/Connection/sfu-rtc.ts(+415 -0)➕
src/lib/components/channel/ChannelCall/Controls.svelte(+72 -0)➕
src/lib/components/channel/ChannelCall/Navbar.svelte(+112 -0)➕
src/lib/components/channel/ChannelCall/VideoStream.svelte(+52 -0)📝
src/lib/components/channel/Navbar.svelte(+22 -0)➕
src/lib/components/icons/Microphone.svelte(+19 -0)➕
src/lib/components/icons/MicrophoneOff.svelte(+19 -0)➕
src/lib/components/icons/Phone.svelte(+19 -0)...and 5 more files
📄 Description
Pull Request Checklist
Note to first-time contributors: Please open a discussion post in Discussions to discuss your idea/fix with the community before creating a pull request, and describe your changes before submitting a pull request.
This is to ensure large feature PRs are discussed with the community first, before starting work on it. If the community does not want this feature or it is not relevant for Open WebUI as a project, it can be identified in the discussion before working on the feature and submitting the PR.
Before submitting, make sure you've checked the following:
devbranch. PRs targetingmainwill be immediately closed.devto ensure no unrelated commits (e.g. frommain) are included. Push updates to the existing PR branch instead of closing and reopening.Changelog Entry
Description
Implements audio and video calls for channels, using a single forwarding unit architecture and aiortc for WebRTC support in the backend.
Added
Changed
Deprecated
Removed
Fixed
Security
Breaking Changes
Additional Information
Screenshots or Videos
Contributor License Agreement
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.