Skip to main content
Evaluations in Open WebUI provide a comprehensive feedback and model comparison system. Users can rate model responses, compare models side-by-side in arena mode, and administrators can view performance leaderboards with Elo ratings.

Overview

The evaluation system provides:
  • User feedback collection on model responses
  • Model comparison arena for head-to-head evaluations
  • Elo-based leaderboard ranking system
  • Topic-specific model performance analysis
  • Feedback export and management
  • Historical performance tracking
Evaluations help identify which models perform best for different use cases and provide valuable feedback for model improvement.

Feedback System

Creating Feedback

Users can submit feedback on model responses:

Feedback Structure

Feedback entries contain:
  • type: Type of feedback (e.g., “rating”, “comment”)
  • data: Feedback details including:
    • model_id: The evaluated model
    • rating: “1” (positive) or “-1” (negative)
    • sibling_model_ids: Other models in the comparison
    • tags: Topic/category tags for context
  • meta: Additional metadata (chat, message, timestamp)

Viewing User Feedback

Retrieve feedback submitted by the current user:

Managing Feedback

Get Specific Feedback

Update Feedback

Users can update their own feedback:

Delete Feedback

Evaluation Arena

The arena mode allows administrators to configure blind model comparisons:

Configure Arena Models

Set up models for arena evaluation:

Get Arena Configuration

Arena mode presents models to users without revealing their identities, reducing bias in comparisons.

Leaderboard System

Administrators can view model performance rankings based on user feedback:

Get Model Leaderboard

Retrieve Elo-based model rankings:

Topic-Specific Rankings

Filter leaderboard by topic using semantic search:

How Elo Ratings Work

The leaderboard uses an Elo rating system:
  1. Starting Rating: All models begin at 1000 Elo
  2. Rating Updates: When users compare models:
    • Winner gains points, loser loses points
    • Amount depends on rating difference (upsets = bigger change)
  3. Formula: new_rating = old_rating + K * (actual - expected)
    • K=32 (controls rating volatility)
    • Expected = probability of winning based on current ratings
When querying with a topic (e.g., “coding”):
  1. System computes semantic similarity between query and feedback tags
  2. Similarity scores weight the Elo calculation
  3. Feedback about “coding” contributes more to rankings
  4. Unrelated feedback contributes less
This provides topic-specific leaderboards without separate data.

Model Performance History

Track a model’s performance over time:

Admin Feedback Management

Administrators have additional feedback management capabilities:

List All Feedback

Get paginated feedback with sorting:

Export All Feedback

Export feedback data for analysis:

Get Feedback IDs Only

Retrieve just the IDs for bulk operations:

Bulk Delete Feedback

Delete all feedback (admin only):
Bulk delete operations are permanent and cannot be undone. Export feedback data before deletion.

Use Cases

Compare two models for a specific use case:
Identify which models excel at different topics:
Systematic feedback collection:

Best Practices

  1. Tag Consistently: Use standardized tags for better topic analysis
  2. Collect Context: Include relevant metadata (task type, user role, etc.)
  3. Regular Reviews: Check leaderboard trends periodically
  4. Blind Comparisons: Use arena mode to reduce bias
  5. Sufficient Data: Collect enough feedback before making decisions
  6. Export Backups: Regularly export feedback for analysis and backup
  7. Topic-Specific: Use query filtering to find best models per use case

Troubleshooting

Invalid Rating Value

Rating must be “1” (positive) or “-1” (negative):

Empty Leaderboard

Leaderboard requires feedback with comparison data:

Missing Topic Results

Topic-based filtering requires:
  • Embedding model configured (AUXILIARY_EMBEDDING_MODEL)
  • Feedback with topic tags
  • Sufficient tag diversity
If the embedding model fails to load, topic-based filtering falls back to unweighted Elo rankings.

Configuration

Environment Variables

Required Permissions

  • Users: Can create, view, update, and delete their own feedback
  • Admins: Full access to all feedback, leaderboard, and configuration

Next Steps