[PR #1] [MERGED] feat: add initial benchmarking suite, Channels benchmark #1

Closed
opened 2026-02-15 21:15:28 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/benchmark/pull/1
Author: @westbrook-ai
Created: 12/8/2025
Status: Merged
Merged: 1/6/2026
Merged by: @tjbck

Base: mainHead: feat-channels-benchmarking


📝 Commits (7)

  • 91f9d4a feat: add initial benchmarking suite, Channels benchmark
  • 9a86a8a fix: add dotenv to reqs, update README instructions
  • 08f66cc fix: docker port
  • 203911a fix: docker port
  • 10a6768 fix: default port in config
  • dec7ca2 fix: make fixes for issues identified by G30
  • 19151fd fix: invalid syntax issues

📊 Changes

25 files changed (+4788 additions, -0 deletions)

View changed files

.env.example (+21 -0)
.gitignore (+50 -0)
README.md (+306 -0)
benchmark/__init__.py (+19 -0)
benchmark/cli.py (+269 -0)
benchmark/clients/__init__.py (+13 -0)
benchmark/clients/http_client.py (+709 -0)
benchmark/clients/websocket_client.py (+289 -0)
benchmark/core/__init__.py (+15 -0)
benchmark/core/base.py (+277 -0)
benchmark/core/config.py (+303 -0)
benchmark/core/metrics.py (+445 -0)
benchmark/core/runner.py (+278 -0)
benchmark/scenarios/__init__.py (+11 -0)
benchmark/scenarios/channels.py (+631 -0)
benchmark/utils/__init__.py (+11 -0)
benchmark/utils/docker.py (+414 -0)
config/benchmark_config.yaml (+95 -0)
config/compute_profiles.yaml (+82 -0)
docker/docker-compose.benchmark.yaml (+40 -0)

...and 5 more files

📄 Description

No description provided


🔄 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/benchmark/pull/1 **Author:** [@westbrook-ai](https://github.com/westbrook-ai) **Created:** 12/8/2025 **Status:** ✅ Merged **Merged:** 1/6/2026 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `feat-channels-benchmarking` --- ### 📝 Commits (7) - [`91f9d4a`](https://github.com/open-webui/benchmark/commit/91f9d4a51784dc7feff07b2df31913661cbb6852) feat: add initial benchmarking suite, Channels benchmark - [`9a86a8a`](https://github.com/open-webui/benchmark/commit/9a86a8ace8228e8754f613297beafdcdbed081b5) fix: add dotenv to reqs, update README instructions - [`08f66cc`](https://github.com/open-webui/benchmark/commit/08f66ccc6ae9d65a3f00ee5bf9ca6ad31c3d8323) fix: docker port - [`203911a`](https://github.com/open-webui/benchmark/commit/203911a9ab50061a79a14459e2fa66b30778fd18) fix: docker port - [`10a6768`](https://github.com/open-webui/benchmark/commit/10a6768ccf245da71218be697608e4ba77f0bee6) fix: default port in config - [`dec7ca2`](https://github.com/open-webui/benchmark/commit/dec7ca25b010b80fad20cbe56fb22c9c184814e4) fix: make fixes for issues identified by G30 - [`19151fd`](https://github.com/open-webui/benchmark/commit/19151fdd54e95659dfd5c151cc7ee990e7d2b825) fix: invalid syntax issues ### 📊 Changes **25 files changed** (+4788 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `.env.example` (+21 -0) ➕ `.gitignore` (+50 -0) ➕ `README.md` (+306 -0) ➕ `benchmark/__init__.py` (+19 -0) ➕ `benchmark/cli.py` (+269 -0) ➕ `benchmark/clients/__init__.py` (+13 -0) ➕ `benchmark/clients/http_client.py` (+709 -0) ➕ `benchmark/clients/websocket_client.py` (+289 -0) ➕ `benchmark/core/__init__.py` (+15 -0) ➕ `benchmark/core/base.py` (+277 -0) ➕ `benchmark/core/config.py` (+303 -0) ➕ `benchmark/core/metrics.py` (+445 -0) ➕ `benchmark/core/runner.py` (+278 -0) ➕ `benchmark/scenarios/__init__.py` (+11 -0) ➕ `benchmark/scenarios/channels.py` (+631 -0) ➕ `benchmark/utils/__init__.py` (+11 -0) ➕ `benchmark/utils/docker.py` (+414 -0) ➕ `config/benchmark_config.yaml` (+95 -0) ➕ `config/compute_profiles.yaml` (+82 -0) ➕ `docker/docker-compose.benchmark.yaml` (+40 -0) _...and 5 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 21:15:28 -05:00
yindo closed this issue 2026-02-15 21:15:28 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: open-webui/benchmark#1