From 79afe7ec2a2d8bf3fd35c9bfcd29ef756c7fbd6d Mon Sep 17 00:00:00 2001 From: Joe Garlick Date: Tue, 7 Jan 2025 11:43:57 +0000 Subject: [PATCH] Changed: Polly authentication information to be optional --- src/pipecat/services/aws.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pipecat/services/aws.py b/src/pipecat/services/aws.py index b6a763f16..a4ec6622b 100644 --- a/src/pipecat/services/aws.py +++ b/src/pipecat/services/aws.py @@ -119,9 +119,9 @@ class PollyTTSService(TTSService): def __init__( self, *, - api_key: str, - aws_access_key_id: str, - region: str, + api_key: Optional[str] = None, + aws_access_key_id: Optional[str] = None, + region: Optional[str] = None, voice_id: str = "Joanna", sample_rate: int = 24000, params: InputParams = InputParams(),