We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5bd204f + 65775bd commit 2e46e66Copy full SHA for 2e46e66
2 files changed
README.md
@@ -91,7 +91,7 @@ client = AsyncSmallest(api_key=os.environ.get("SMALLEST_API_KEY"))
91
92
async def main():
93
async with client as tts:
94
- await tts.synthesize("Hello, this is a test of the async synthesis function.")
+ audio_bytes = await tts.synthesize("Hello, this is a test of the async synthesis function.")
95
async with aiofiles.open("async_synthesize.wav", "wb") as f:
96
await f.write(audio_bytes) # alternatively you can use the `save_as` parameter.
97
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "smallestai"
3
-version = "1.1.0"
+version = "1.2.0"
4
description = "Official Python client for the Smallest AI API"
5
authors = [
6
{name = "Smallest", email = "info@smallest.ai"},
0 commit comments