// Copyright (c) Microsoft. All rights reserved. namespace Microsoft.Agents.AI.Compaction; /// /// A predicate that evaluates whether compaction should proceed based on current metrics. /// /// The current message index with group, token, message, and turn metrics. /// if compaction should proceed; to skip. public delegate bool CompactionTrigger(MessageIndex index);