livekit-plugins-smallestai 1.5.12


pip install livekit-plugins-smallestai

  Latest version

Released: May 21, 2026


Meta
Author: LiveKit
Requires Python: >=3.10.0

Classifiers

Intended Audience
  • Developers

License
  • OSI Approved :: Apache Software License

Programming Language
  • Python :: 3
  • Python :: 3 :: Only
  • Python :: 3.10

Topic
  • Multimedia :: Sound/Audio
  • Multimedia :: Video
  • Scientific/Engineering :: Artificial Intelligence

Smallest AI plugin for LiveKit Agents

Support for speech synthesis (TTS) and speech recognition (STT) with the Smallest AI API.

Installation

pip install livekit-plugins-smallestai

Pre-requisites

You'll need an API key from Smallest AI. It can be set as an environment variable: SMALLEST_API_KEY

Usage

Speech-to-Text (Pulse STT)

from livekit.plugins import smallestai

# Streaming transcription
stt = smallestai.STT(language="en")

# Automatic language detection across 39 languages
stt = smallestai.STT(language="multi")

Text-to-Speech (Lightning TTS)

from livekit.plugins import smallestai

tts = smallestai.TTS(voice_id="emily")
Extras: None
Dependencies:
livekit-agents[codecs] (>=1.5.12)
numpy (>=1.26)