Skip to content

Commit 2e46e66

Browse files
authored
Merge pull request #8 from smallest-inc/new-v
new v and readme
2 parents 5bd204f + 65775bd commit 2e46e66

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ client = AsyncSmallest(api_key=os.environ.get("SMALLEST_API_KEY"))
9191

9292
async def main():
9393
async with client as tts:
94-
await tts.synthesize("Hello, this is a test of the async synthesis function.")
94+
audio_bytes = await tts.synthesize("Hello, this is a test of the async synthesis function.")
9595
async with aiofiles.open("async_synthesize.wav", "wb") as f:
9696
await f.write(audio_bytes) # alternatively you can use the `save_as` parameter.
9797

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "smallestai"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
description = "Official Python client for the Smallest AI API"
55
authors = [
66
{name = "Smallest", email = "info@smallest.ai"},

0 commit comments

Comments
 (0)