465 B
465 B
-
Text Aggregation Improvements:
- Breaking Change:
BaseTextAggregator.aggregate()now returnsAsyncIterator[Aggregation]instead ofOptional[Aggregation]. This enables the aggregator to return multiple results based on the provided text. - Refactored text aggregators to use inheritance:
SkipTagsAggregatorandPatternPairAggregatornow inherit fromSimpleTextAggregator, reusing the base class's sentence detection logic.
- Breaking Change: