namespace AIStudio.Tools; public enum TargetWindowStrategy { /// /// Means no target window strategy, which will effectively return all items. /// NONE, /// /// Searches for two up-to-three items but at least one. /// A_FEW_GOOD_ONES, /// /// Searches for the top 10% items that are better than guessing, i.e., with confidence greater than 0.5f. /// TOP10_BETTER_THAN_GUESSING, }