From 41ac43cf71f91b2ca751dcc9a4cef57af8ff0f96 Mon Sep 17 00:00:00 2001 From: Sam Sykes Date: Tue, 11 Nov 2025 13:56:45 +0000 Subject: [PATCH] updated docs --- src/pipecat/services/speechmatics/tts.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/pipecat/services/speechmatics/tts.py b/src/pipecat/services/speechmatics/tts.py index a99433f73..3086aaa44 100644 --- a/src/pipecat/services/speechmatics/tts.py +++ b/src/pipecat/services/speechmatics/tts.py @@ -44,7 +44,12 @@ class SpeechmaticsTTSService(TTSService): SPEECHMATICS_SAMPLE_RATE = 16000 class InputParams(BaseModel): - """Optional input parameters for Speechmatics TTS configuration.""" + """Optional input parameters for Speechmatics TTS configuration. + + Parameters: + retry_interval_s: Interval between retries in seconds. Defaults to 0.02. + retry_timeout_s: Timeout for retries in seconds. Defaults to 1.0. + """ retry_interval_s: float = 0.02 retry_timeout_s: float = 1.0