Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,20 @@ protected override async Task OnParametersSetAsync()
AddTag(b);
}
}

// Handle model tag aliases / legacy tags.
// PODS-AI may include "resident"; OrcaHello uses "srkw" only when the moderator explicitly
// selects SRKW=yes, so strip "resident" during initialization to avoid an extra tag.
// If we later need to map other model labels (e.g., "transient" -> "biggs"), do it here.
// This does not block moderators from manually entering "resident" later.
if (Detection.TagList.Contains("resident", StringComparer.OrdinalIgnoreCase))
{
RemoveTag("resident");

// Don't add srkw since that would make the SRKWFound
// button default to yes. Instead leave it unselected,
// like OrcaHello candidates do.
}
}
}

Expand Down
Loading