Add MLflow Pipelines Integration Example #568
Open
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_URI
http://localhost:5000
MLFLOW_EXPERIMENT_NAME
open-webui-experiments
SEPARATE_RUNS
false
USE_MODEL_NAME
false
DEBUG_MODE
false
Data Structure
Tags:
source
,interface
,user_id
,chat_id
,run_type
,status
,total_interactions
Parameters:
model_id
,model_name
,user_email
,chat_id
,interface
,task_type
Metrics:
user_message_length
,assistant_message_length
,response_time
,input_tokens
,output_tokens
,total_tokens
Artifacts: User inputs, AI responses, conversation history (JSON)
Requirements
mlflow>=2.0.0
requests>=2.25.0
Usage 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