Remove urls tts macos (#4260)

Co-authored-by: k-boikov <64261260+k-boikov@users.noreply.github.com>
Co-authored-by: Nicholas Tindle <nick@ntindle.com>
Co-authored-by: Luke K (pr-0f3t) <2609441+lc0rp@users.noreply.github.com>
This commit is contained in:
gravelBridge
2023-06-14 03:43:06 -07:00
committed by GitHub
parent c76c67a69c
commit c17d825bba

View File

@@ -1,5 +1,6 @@
"""Base class for all voice classes."""
import abc
import re
from threading import Lock
from autogpt.singleton import AbstractSingleton
@@ -29,6 +30,11 @@ class VoiceBase(AbstractSingleton):
text (str): The text to say.
voice_index (int): The index of the voice to use.
"""
text = re.sub(
r"\b(?:https?://[-\w_.]+/?\w[-\w_.]*\.(?:[-\w_.]+/?\w[-\w_.]*\.)?[a-z]+(?:/[-\w_.%]+)*\b(?!\.))",
"",
text,
)
with self._mutex:
return self._speech(text, voice_index)