Changed: Polly authentication information to be optional
This commit is contained in:
@@ -119,9 +119,9 @@ class PollyTTSService(TTSService):
|
|||||||
def __init__(
|
def __init__(
|
||||||
self,
|
self,
|
||||||
*,
|
*,
|
||||||
api_key: str,
|
api_key: Optional[str] = None,
|
||||||
aws_access_key_id: str,
|
aws_access_key_id: Optional[str] = None,
|
||||||
region: str,
|
region: Optional[str] = None,
|
||||||
voice_id: str = "Joanna",
|
voice_id: str = "Joanna",
|
||||||
sample_rate: int = 24000,
|
sample_rate: int = 24000,
|
||||||
params: InputParams = InputParams(),
|
params: InputParams = InputParams(),
|
||||||
|
|||||||
Reference in New Issue
Block a user