Merge pull request #2336 from pipecat-ai/mb/suppress-pydub-warning

Suppress pydub (cartesia dependency) SyntaxWarning
This commit is contained in:
Mark Backman
2025-08-02 10:01:05 -07:00
committed by GitHub

View File

@@ -34,6 +34,10 @@ from pipecat.utils.text.base_text_aggregator import BaseTextAggregator
from pipecat.utils.text.skip_tags_aggregator import SkipTagsAggregator
from pipecat.utils.tracing.service_decorators import traced_tts
# Suppress regex warnings from pydub (used by cartesia)
warnings.filterwarnings("ignore", message="invalid escape sequence", category=SyntaxWarning)
# See .env.example for Cartesia configuration needed
try:
from cartesia import AsyncCartesia