mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-08 12:58:11 -05:00
[GH-ISSUE #17347] issue: filter pipelines - missing LLM outputs(outlet call) for title/follow up/tag generation requests #56914
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?
Originally created by @frdeng on GitHub (Sep 10, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/17347
Check Existing Issues
Installation Method
Other
Open WebUI Version
v0.6.22
Ollama Version (if applicable)
No response
Operating System
k8s
Browser (if applicable)
No response
Confirmation
README.md.Expected Behavior
Filter pipelines, it should have LLM outputs(outlet call) for title/follow up/tag generation requests
Actual Behavior
only inputs(inlet call) are observed for title/follow up/tag generation requests.
Steps to Reproduce
Logs & Screenshots
n/a
Additional Information
No response
@tjbck commented on GitHub (Sep 11, 2025):
outletis only supported for main message io.@frdeng commented on GitHub (Sep 12, 2025):
if only the main message is supported, then don't put the followup/title/tag gen messages to inlet, otherwise the pipelines developers have to add the logic handle the missing outlet calls @tjbck
@selenecodes commented on GitHub (Oct 20, 2025):
This kind of makes no sense to not have though?
Because right now we do log the inlets for tasks in:
7a83e7dfa3/backend/open_webui/routers/tasks.py (L372-L376)Is there any objection for me to make a PR that adds the following:
@bannert1337 commented on GitHub (Mar 17, 2026):
As I hate gatekeeping, here is a patch to make Open WebUI call the outlet on task generations too:
https://pastebin.com/8aJSkYPq
I use this with a modified filter pipeline to export to Opik.
@Classic298 commented on GitHub (Mar 17, 2026):
@bannert1337 you wanna PR it?
@bannert1337 commented on GitHub (Mar 17, 2026):
@Classic298 sure, give me a moment and I will push the changes and create the PR
@Classic298 commented on GitHub (Apr 14, 2026):
OUTLET now being called - in dev.