Skip to content

smallest-inc/smallest-python-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image

Official Python Client for Smallest AI API

Smallest AI builds high-speed multi-lingual voice models tailored for real-time applications, achieving ultra-realistic audio generation in as fast as ~100 milliseconds for 10 seconds of audio. With this sdk, you can easily convert text into high-quality audio with humanlike expressiveness.

Currently, the library supports direct synthesis and the ability to synthesize streamed LLM output, both synchronously and asynchronously.

Table of Contents

Installation

To install the latest version available

pip install smallestai

When using an SDK in your application, make sure to pin to at least the major version (e.g., ==1.*). This helps ensure your application remains stable and avoids potential issues from breaking changes in future updates.

Get the API Key

  1. Visit waves.smallest.ai and sign up for an account or log in if you already have an account.
  2. Navigate to API Key tab in your account dashboard.
  3. Create a new API Key and copy it.
  4. Export the API Key in your environment with the name SMALLEST_API_KEY, ensuring that your application can access it securely for authentication.

Best Practices for Input Text

While the transliterate parameter is provided, please note that it is not fully supported and may not perform consistently across all cases. It is recommended to use the model without relying on this parameter.

For optimal voice generation results:

  1. For English, provide the input in Latin script (e.g., "Hello, how are you?").
  2. For Hindi, provide the input in Devanagari script (e.g., "नमस्ते, आप कैसे हैं?").
  3. For code-mixed input, use Latin script for English and Devanagari script for Hindi (e.g., "Hello, आप कैसे हैं?").

Examples

Synchronous

A synchronous text-to-speech synthesis client.

Basic Usage:

from smallest import Smallest

def main():
    client = Smallest(api_key="SMALLEST_API_KEY")
    client.synthesize(
        text="Hello, this is a test for sync synthesis function.",
        save_as="sync_synthesize.wav"
    )

if __name__ == "__main__":
    main()

Parameters:

  • api_key: Your API key (can be set via SMALLEST_API_KEY environment variable)
  • model: TTS model to use (default: "lightning")
  • sample_rate: Audio sample rate (default: 24000)
  • voice_id: Voice ID (default: "emily")
  • speed: Speech speed multiplier (default: 1.0)
  • add_wav_header: Include WAV header in output (default: True)
  • transliterate: Enable text transliteration (default: False)
  • remove_extra_silence: Remove additional silence (default: True)

These parameters are part of the Smallest instance. They can be set when creating the instance (as shown above). However, the synthesize function also accepts kwargs, allowing you to override these parameters for a specific synthesis request.

For example, you can modify the speech speed and sample rate just for a particular synthesis call:

client.synthesize(
    "Hello, this is a test for sync synthesis function.",
    save_as="sync_synthesize.wav",
    speed=1.5,  # Overrides default speed
    sample_rate=16000  # Overrides default sample rate
)

Asynchronous

Asynchronous text-to-speech synthesis client.

Basic Usage:

import asyncio
import aiofiles
from smallest import AsyncSmallest

client = AsyncSmallest(api_key="SMALLEST_API_KEY")

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

if __name__ == "__main__":
    asyncio.run(main())

Parameters:

  • api_key: Your API key (can be set via SMALLEST_API_KEY environment variable)
  • model: TTS model to use (default: "lightning")
  • sample_rate: Audio sample rate (default: 24000)
  • voice_id: Voice ID (default: "emily")
  • speed: Speech speed multiplier (default: 1.0)
  • add_wav_header: Include WAV header in output (default: True)
  • transliterate: Enable text transliteration (default: False)
  • remove_extra_silence: Remove additional silence (default: True)

These parameters are part of the AsyncSmallest instance. They can be set when creating the instance (as shown above). However, the synthesize function also accepts kwargs, allowing you to override any of these parameters on a per-request basis.

For example, you can modify the speech speed and sample rate just for a particular synthesis request:

audio_bytes = await tts.synthesize(
    "Hello, this is a test of the async synthesis function.",
    speed=1.5,  # Overrides default speed
    sample_rate=16000  # Overrides default sample rate
)

LLM to Speech

The TextToAudioStream class provides real-time text-to-speech processing, converting streaming text into audio output. It's particularly useful for applications like voice assistants, live captioning, or interactive chatbots that require immediate audio feedback from text generation. Supports both synchronous and asynchronous TTS instance.

import wave
import asyncio
from groq import Groq
from smallest import Smallest, TextToAudioStream

llm = Groq(api_key="GROQ_API_KEY")
tts = Smallest(api_key="SMALLEST_API_KEY")

async def generate_text(prompt):
    """Async generator for streaming text from Groq. You can use any LLM"""
    completion = llm.chat.completions.create(
        messages=[
            {
                "role": "user",
                "content": prompt,
            }
        ],
        model="llama3-8b-8192",
        stream=True,
    )

    for chunk in completion:
        text = chunk.choices[0].delta.content
        if text is not None:
            yield text

async def save_audio_to_wav(file_path, processor, llm_output):
    with wave.open(file_path, "wb") as wav_file:
        wav_file.setnchannels(1)
        wav_file.setsampwidth(2) 
        wav_file.setframerate(24000)
        
        async for audio_chunk in processor.process(llm_output):
            wav_file.writeframes(audio_chunk)

async def main():
    # Initialize the TTS processor with the TTS instance
    processor = TextToAudioStream(tts_instance=tts)
    
    # Generate text asynchronously and process it
    llm_output = generate_text("Explain text to speech like I am five in 5 sentences.")
    
    # As an example, save the generated audio to a WAV file.
    await save_audio_to_wav("llm_to_speech.wav", processor, llm_output)

if __name__ == "__main__":
    asyncio.run(main())

Parameters:

  • tts_instance: Text-to-speech engine (Smallest or AsyncSmallest)
  • queue_timeout: Wait time for new text (seconds, default: 5.0)
  • max_retries: Number of retry attempts for failed synthesis (default: 3)

Output Format:
The processor yields raw audio data chunks without WAV headers for streaming efficiency. These chunks can be:

  • Played directly through an audio device
  • Saved to a file
  • Streamed over a network
  • Further processed as needed

Add your Voice

The Smallest AI SDK allows you to clone your voice by uploading an audio file. This feature is available both synchronously and asynchronously, making it flexible for different use cases. Below are examples of how to use this functionality.

Synchronously

from smallest import Smallest

def main():
    client = Smallest(api_key="YOUR_API_KEY")
    res = client.add_voice(display_name="My Voice", file_path="my_voice.wav")
    print(res)

if __name__ == "__main__":
    main()

Asynchronously

import asyncio
from smallest import AsyncSmallest

async def main():
    client = AsyncSmallest(api_key="YOUR_API_KEY")
    res = await client.add_voice(display_name="My Voice", file_path="my_voice.wav")
    print(res)

if __name__ == "__main__":
    asyncio.run(main())

Available Methods

from smallest import Smallest

client = Smallest(api_key="SMALLEST_API_KEY")

print(f"Available Languages: {client.get_languages()}")
print(f"Available Voices: {client.get_voices(model='lightning')}")
print(f"Available Voices: {client.get_cloned_voices()}")
print(f"Available Models: {client.get_models()}")

Technical Note: WAV Headers in Streaming Audio

When implementing audio streaming with chunks of synthesized speech, WAV headers are omitted from individual chunks because:

Technical Issues

  • Each WAV header contains metadata about the entire audio file.
  • Multiple headers would make chunks appear as separate audio files and add redundancy.
  • Headers contain file-specific data (like total size) that's invalid for chunks.
  • Sequential playback of chunks with headers causes audio artifacts (pop sounds) when concatenating or playing audio sequentially.
  • Audio players would try to reinitialize audio settings for each chunk.

Best Practices for Audio Streaming

  1. Stream raw PCM audio data without headers
  2. Add a single WAV header only when:
    • Saving the complete stream to a file
    • Initializing the audio playback system
    • Converting the stream to a standard audio format