We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8f0817 commit dab1726Copy full SHA for dab1726
1 file changed
README.rst
@@ -36,10 +36,10 @@ Example
36
async def main():
37
async with Client() as client:
38
audio_query = await client.create_audio_query(
39
- "こんにちは!", style_id=1
+ "こんにちは!", speaker=1
40
)
41
with open("voice.wav", "wb") as f:
42
- f.write(await audio_query.synthesis(style_id=1))
+ f.write(await audio_query.synthesis(speaker=1))
43
44
45
if __name__ == "__main__":
0 commit comments