mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-28 18:34:23 +01:00
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:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user