Add MLflow Pipelines Integration Example#568
Open
axc888 wants to merge 1 commit intoopen-webui:mainfrom
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR adds a comprehensive MLflow integration pipeline for Open WebUI that enables real-time conversation tracking, analytics, and performance monitoring. The pipeline automatically logs all user-AI interactions to MLflow with detailed metrics and artifacts.
Features Added
Type of Change
Core Functionality
inlet()andoutlet()methods to capture complete request/response cycleConfiguration Options
The pipeline supports extensive configuration via environment variables and valves:
MLFLOW_TRACKING_URIhttp://localhost:5000MLFLOW_EXPERIMENT_NAMEopen-webui-experimentsSEPARATE_RUNSfalseUSE_MODEL_NAMEfalseDEBUG_MODEfalseData Structure
Tags:
source,interface,user_id,chat_id,run_type,status,total_interactionsParameters:
model_id,model_name,user_email,chat_id,interface,task_typeMetrics:
user_message_length,assistant_message_length,response_time,input_tokens,output_tokens,total_tokensArtifacts: User inputs, AI responses, conversation history (JSON)
Requirements
mlflow>=2.0.0requests>=2.25.0Usage Examples
Basic Setup
1. Install MLflow (version 2.0.0 or higher)
pip install "mlflow>=2.0.0"
2. Start the MLflow tracking server
mlflow server --host 0.0.0.0 --port 5000
3. Configure Open WebUI (or any client) to use MLflow
export MLFLOW_TRACKING_URI=http://localhost:5000
export MLFLOW_EXPERIMENT_NAME=my-conversations
Screenshots