From ed808a9246b46626b80b85916e4066e54394669b Mon Sep 17 00:00:00 2001 From: mattie ruth backman Date: Wed, 5 Nov 2025 14:44:58 -0500 Subject: [PATCH] Fix new test and str version of PatternMatch --- src/pipecat/utils/text/pattern_pair_aggregator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/utils/text/pattern_pair_aggregator.py b/src/pipecat/utils/text/pattern_pair_aggregator.py index a31ad2390..d734ee163 100644 --- a/src/pipecat/utils/text/pattern_pair_aggregator.py +++ b/src/pipecat/utils/text/pattern_pair_aggregator.py @@ -62,7 +62,7 @@ class PatternMatch(Aggregation): Returns: A descriptive string showing the pattern type and content. """ - return f"PatternMatch(type={self.type}, content={self.text}, full_match={self.full_match})" + return f"PatternMatch(type={self.type}, text={self.text}, full_match={self.full_match})" class PatternPairAggregator(BaseTextAggregator):