Skip to content
Discussion options

You must be logged in to vote

OpenWebUI does not natively send feedback or comments to Langfuse—only trace and usage data are integrated by default. That's why feedback you submit in OpenWebUI chats doesn't show up in Langfuse traces.

Langfuse does support collecting user feedback and comments via its public API endpoints and SDKs. To make feedback from OpenWebUI appear in Langfuse, you would need to extend OpenWebUI to call Langfuse's feedback APIs when a user submits feedback. For example, you can use the LangfuseWeb SDK in your UI to send feedback like this:

import { LangfuseWeb } from "langfuse";

export function UserFeedbackComponent({ traceId }) {
  const langfuseWeb = new LangfuseWeb({ publicKey: "YOUR_LANGFUS…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@jannikmaierhoefer
Comment options

Answer selected by jannikmaierhoefer
Comment options

You must be logged in to vote
1 reply
@dosubot
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
3 participants