AI-Studio/app/MindWork AI Studio/Assistants/ModelComparison/ModelComparisonVote.cs
2026-09-26 21:01:36 +02:00

15 lines
418 B
C#

namespace AIStudio.Assistants.ModelComparison;
/// <summary>
/// What the voter chose while the answers were still shown without the names of the models.
/// </summary>
/// <remarks>
/// This names a column on the screen, not a model. Which model stood in a column is what
/// <see cref="ModelComparisonPresentationOrder"/> says.
/// </remarks>
public enum ModelComparisonVote
{
COLUMN_A,
COLUMN_B,
TIE,
}