Timothy Jaeryang Baek
552bbcecfa
refac
2026-05-09 03:15:53 +09:00
Timothy Jaeryang Baek
f152ad36b3
refac
2026-05-09 03:06:19 +09:00
Timothy Jaeryang Baek
cde72dab71
refac
2026-05-09 02:54:09 +09:00
Timothy Jaeryang Baek
ff791b4814
refac
2026-05-09 02:43:07 +09:00
Timothy Jaeryang Baek
7eaecbad5a
refac
2026-05-09 02:38:08 +09:00
Timothy Jaeryang Baek
0103d7e82c
refac
2026-05-09 02:31:30 +09:00
Timothy Jaeryang Baek
3309f5d9f1
refac
2026-05-09 02:25:26 +09:00
Timothy Jaeryang Baek
6dff85b9d2
refac
2026-05-09 02:08:08 +09:00
Classic298
7e275c1daa
fix: prevent STT from blocking the uvicorn event loop ( #24338 )
...
The transcription endpoint was async but called the synchronous transcribe() function directly, blocking the single-threaded uvicorn event loop for the entire duration of inference. This caused all HTTP and WebSocket connections to stall for every user on the instance during STT processing.
- Add asyncio import
- Use async UploadFile.read() instead of synchronous file.file.read()
- Offload the blocking transcribe() call via asyncio.to_thread()
Closes #24169
2026-05-09 02:05:28 +09:00
Timothy Jaeryang Baek
1c1c8b18e5
refac
2026-05-09 02:04:36 +09:00
Timothy Jaeryang Baek
55a572cd39
refac
2026-05-09 02:04:26 +09:00
Timothy Jaeryang Baek
9adc0c442a
refac
2026-05-09 02:02:02 +09:00
Timothy Jaeryang Baek
fd3368c0bf
refac
2026-05-09 01:55:51 +09:00
Timothy Jaeryang Baek
ef6d4f2d6c
refac
2026-05-09 01:50:58 +09:00
Timothy Jaeryang Baek
b72019db39
refac
2026-05-09 01:31:04 +09:00
Timothy Jaeryang Baek
2977910ffd
refac
2026-05-09 01:25:01 +09:00
Timothy Jaeryang Baek
f39f4a86ae
refac
2026-05-09 01:22:25 +09:00
Timothy Jaeryang Baek
1dee67b64d
refac
2026-05-09 01:21:17 +09:00
Jacob Leksan
2a18dc98ac
Implement asynchronous database ping for health checks ( #24380 )
2026-05-09 01:20:11 +09:00
Timothy Jaeryang Baek
4754ece4a2
refac
2026-05-09 01:17:57 +09:00
Timothy Jaeryang Baek
4fe2de7864
refac
2026-05-09 01:13:16 +09:00
Timothy Jaeryang Baek
a32d26e61d
refac
Create and publish Docker images with specific build args / build-main-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-main-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda126-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda126-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-ollama-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-ollama-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-slim-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-slim-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Python CI / Format Backend (push) Has been cancelled
Frontend Build / Format & Build Frontend (push) Has been cancelled
Frontend Build / Frontend Unit Tests (push) Has been cancelled
Create and publish Docker images with specific build args / merge-main-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-cuda-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-cuda126-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-ollama-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-slim-images (push) Has been cancelled
Create and publish Docker images with specific build args / copy-to-dockerhub (, main) (push) Has been cancelled
Create and publish Docker images with specific build args / copy-to-dockerhub (-cuda, cuda) (push) Has been cancelled
Create and publish Docker images with specific build args / copy-to-dockerhub (-cuda126, cuda126) (push) Has been cancelled
Create and publish Docker images with specific build args / copy-to-dockerhub (-ollama, ollama) (push) Has been cancelled
Create and publish Docker images with specific build args / copy-to-dockerhub (-slim, slim) (push) Has been cancelled
2026-05-05 04:21:23 +09:00
Timothy Jaeryang Baek
989d5fd4e2
refac
2026-05-05 04:05:15 +09:00
Timothy Jaeryang Baek
cde21b9f6d
refac
2026-05-05 03:33:47 +09:00
Timothy Jaeryang Baek
8ff7ff459b
chore: format
2026-04-24 18:48:21 +09:00
Timothy Jaeryang Baek
f48b8ffbf0
refac
2026-04-24 18:38:57 +09:00
Constantine
3560d2f630
perf(chats): drop redundant db.refresh after commit in update_chat_by_id ( #24024 )
...
The chat table has no computed columns (no DEFAULT, SERIAL/IDENTITY,
or TRIGGER that populate server-side values on UPDATE), and every
column modified by update_chat_by_id is set explicitly from Python
values earlier in the function. db.refresh therefore issues a SELECT
that replaces those just-written Python values with the round-tripped
database representation of the same values, which is a no-op for
functional purposes but pulls the entire chat.chat JSON blob back over
the network and through the driver's JSON decoder.
On large, active chats where chat.chat can reach tens of megabytes,
skipping the refresh measurably reduces latency and eliminates one
~JSON-sized transient allocation per write.
2026-04-24 18:34:57 +09:00
RomualdYT
e0d6074cd2
refactor(firecrawl): use v2 API directly ( #23934 )
...
Co-authored-by: Tim Baek <tim@openwebui.com>
2026-04-24 18:32:08 +09:00
Timothy Jaeryang Baek
3d1e355df7
refac
2026-04-24 18:20:10 +09:00
Timothy Jaeryang Baek
7102a63c82
refac
2026-04-24 18:06:19 +09:00
Timothy Jaeryang Baek
1cea8ec7d4
refac
2026-04-24 17:59:45 +09:00
Timothy Jaeryang Baek
a7a92d2d9b
refac
2026-04-24 17:49:22 +09:00
Timothy Jaeryang Baek
60f67c7c17
refac
2026-04-24 17:07:23 +09:00
Timothy Jaeryang Baek
9771898c58
refac
2026-04-24 17:04:47 +09:00
Timothy Jaeryang Baek
752238247c
refac
2026-04-24 16:47:30 +09:00
Timothy Jaeryang Baek
d8b55afb00
refac
2026-04-24 16:37:02 +09:00
Timothy Jaeryang Baek
62693938a3
refac
2026-04-24 16:36:07 +09:00
Timothy Jaeryang Baek
d6b73ea2f2
refac
2026-04-24 16:31:02 +09:00
Timothy Jaeryang Baek
5774ab4984
refac
2026-04-24 16:26:34 +09:00
Timothy Jaeryang Baek
db05fdaf83
refac
2026-04-24 16:23:28 +09:00
Timothy Jaeryang Baek
678c44c7cd
refac
2026-04-24 16:17:46 +09:00
Timothy Jaeryang Baek
5cc55e2278
refac
2026-04-24 15:51:54 +09:00
Timothy Jaeryang Baek
26711c1bcc
refac
2026-04-24 15:46:08 +09:00
Jacob Leksan
f2cb63140c
perf: redirect default model profile image to canonical static URL ( #24015 )
...
- Return 302 to /static/favicon.png instead of streaming the same PNG per
model id so browsers can cache one asset for default avatars.
- Validate stored /static/ paths with decode, normpath, and /static
prefix checks; invalid paths fall back to favicon.
Made-with: Cursor
2026-04-24 15:45:10 +09:00
Timothy Jaeryang Baek
a76a779c01
refac
2026-04-24 15:40:02 +09:00
Timothy Jaeryang Baek
a766521933
refac
2026-04-24 15:39:12 +09:00
Timothy Jaeryang Baek
7da6b82471
refac
2026-04-24 15:35:59 +09:00
Timothy Jaeryang Baek
b87c755574
refac
2026-04-24 15:29:36 +09:00
Timothy Jaeryang Baek
6ecba19447
refac
2026-04-24 15:21:52 +09:00
Timothy Jaeryang Baek
90584ab6f3
refac
2026-04-24 15:21:37 +09:00