We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b130abf commit f817c95Copy full SHA for f817c95
README.rst
@@ -38,10 +38,10 @@ Example
38
async def main():
39
async with Client() as client:
40
audio_query = await client.create_audio_query(
41
- "こんにちは!", style_id=1
+ "こんにちは!", speaker=1
42
)
43
with open("voice.wav", "wb") as f:
44
- f.write(await audio_query.synthesis(style_id=1))
+ f.write(await audio_query.synthesis(speaker=1))
45
46
47
if __name__ == "__main__":
0 commit comments