Skip to main content

SmallestAI Python SDK

pypi

pip install smallestai gives you one package with two surfaces, plus a CLI:

  • Atoms — build, configure, deploy, and phone-call voice AI agents (client.atoms).
  • Waves — low-latency text-to-speech and speech-to-text, sync/async and streaming (client.waves).
  • CLIsmallestai for managing agents and deploying agent-crew code.
pip install smallestai

Table of Contents

Quickstart: create an agent and call it

from smallestai import SmallestAI

client = SmallestAI(api_key="<your-api-key>")

# create an agent (the response .data is the new agent id)
agent_id = client.atoms.agents.create_agent(name="my-first-agent").data

# place an outbound call (from_product_id is a rented number's product id)
client.atoms.calls.start_outbound_call(
    agent_id=agent_id,
    phone_number="+1XXXXXXXXXX",
    from_product_id="<rented-number-product-id>",
)

Text-to-speech and speech-to-text (Waves)

synthesize_tts streams audio bytes. List available voices with client.waves.get_voices().

from smallestai import SmallestAI

client = SmallestAI(api_key="<your-api-key>")

with open("out.wav", "wb") as f:
    for chunk in client.waves.synthesize_tts(text="Hello from Smallest.", voice_id="<voice-id>"):
        f.write(chunk)

Streaming speech-to-text helper:

from smallestai.waves.helpers import stream_speech_to_text

for event in stream_speech_to_text(client, language="en"):
    print(event)

Agent crew: your own LLM in the middle

An agent crew runs the LLM turn on a model you choose while Smallest handles STT and TTS. Point the crew node's OpenAIClient at any OpenAI-compatible endpoint (a hosted API, or a local model via Ollama):

from smallestai.atoms.crew.nodes import OutputCrewNode
from smallestai.atoms.crew.clients.openai import OpenAIClient


class Assistant(OutputCrewNode):
    def __init__(self):
        super().__init__(name="assistant")
        self.llm = OpenAIClient(
            model="claude-haiku-4-5",
            api_key="<your-llm-key>",
            base_url="https://api.anthropic.com/v1/",  # or http://localhost:11434/v1 for Ollama
        )

    async def generate_response(self):
        async for chunk in await self.llm.chat(self.context.messages, stream=True):
            if chunk.content:
                yield chunk.content

Conversation history is handled for you: every turn is appended to self.context, and you send self.context.messages to the model each turn.

Deploy it with the CLI:

smallestai auth login
smallestai agent-crew init --agent-id <agent-id>
smallestai agent-crew deploy --entry-point server.py
smallestai agent-crew builds        # pick the build -> Make Live

A flat directory (server.py + requirements.txt at the root) is the simplest layout; a src/ layout with a pyproject.toml also works (declare all runtime deps in the pyproject).

CLI

smallestai auth login                        # store your API key
smallestai agents list                       # list, get, call, and manage agents
smallestai calls list                        # inspect call logs, transcripts, recordings
smallestai calls events <call-id>            # stream a live call's events (transcript, latency, tools)
smallestai calls transcript <call-id> -f     # stream the transcript live
smallestai models                            # text-to-speech, speech-to-text, voices
smallestai agent-crew deploy ...             # package and deploy crew code
smallestai agent-crew logs [build-id]        # stream a build's compile + deploy logs
smallestai agent-crew chat                   # talk to a running crew locally

The speech command group is now models (text-to-speech, speech-to-text, voices); waves still works as a hidden, back-compatible alias.

Async client

The SDK exports an async client with the same surface:

import asyncio
from smallestai import AsyncSmallestAI


async def main():
    client = AsyncSmallestAI(api_key="<your-api-key>")
    agents = await client.atoms.agents.list_agents()
    print(agents.data)


asyncio.run(main())

Environments

from smallestai import SmallestAI
from smallestai.environment import SmallestAIEnvironment

client = SmallestAI(environment=SmallestAIEnvironment.PRODUCTION)

Exception handling

from smallestai.core.api_error import ApiError

try:
    client.atoms.agents.get_agent(id="does-not-exist")
except ApiError as e:
    print(e.status_code, e.body)

Streaming and websockets

Waves supports real-time, low-latency streaming over websockets. stream() returns a context manager; iterate it to process messages as they arrive.

from smallestai import SmallestAI

client = SmallestAI(api_key="<your-api-key>")

# real-time speech-to-text
with client.waves.speech_to_text.stream() as socket:
    for message in socket:
        print(message)

The async client mirrors this with async with / async for. Text-to-speech streams too: synthesize_tts(...) yields audio bytes as they are generated (see above).

Advanced

Access raw response data

Use .with_raw_response to get the response headers and status alongside the parsed data.

response = client.atoms.agents.with_raw_response.get_agent(id="<agent-id>")
print(response.headers)  # response headers
print(response.status_code)  # status code
print(response.data)  # parsed object

Retries

The SDK retries retryable requests with exponential backoff (default 2). Configure it at the client or per request.

client = SmallestAI(api_key="<your-api-key>", max_retries=3)

# or per request
client.atoms.agents.get_agent(id="<agent-id>", request_options={"max_retries": 1})

Timeouts

Defaults to 60 seconds. Configure at the client or per request.

client = SmallestAI(api_key="<your-api-key>", timeout=20.0)

# or per request
client.atoms.agents.get_agent(id="<agent-id>", request_options={"timeout_in_seconds": 5})

Custom client

Override the httpx client for proxies, custom transports, and similar.

import httpx
from smallestai import SmallestAI

client = SmallestAI(
    api_key="<your-api-key>",
    httpx_client=httpx.Client(
        proxy="http://my.test.proxy.example.com",
        transport=httpx.HTTPTransport(local_address="0.0.0.0"),
    ),
)

Reference and docs

Telemetry

The SDK sends anonymous, aggregated usage telemetry (which CLI commands run, deploy outcomes) so we can see what to improve. It never includes personal data or secrets: no API keys, agent ids, prompts, transcripts, phone numbers, file paths, or error messages. Only the event name, SDK / Python / OS version, and a random anonymous install id. It is fire-and-forget and never blocks your program.

Opt out any time:

export SMALLESTAI_TELEMETRY=0    # or DO_NOT_TRACK=1

Contributing

Most of src/ is generated from an API spec and gets overwritten on regeneration, so hand edits there will not stick. If you spot a bug or a gap, open an issue.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

smallestai-5.11.1.tar.gz (495.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

smallestai-5.11.1-py3-none-any.whl (1.0 MB view details)

Uploaded Python 3

File details

Details for the file smallestai-5.11.1.tar.gz.

File metadata

  • Download URL: smallestai-5.11.1.tar.gz
  • Upload date:
  • Size: 495.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.9.25 Linux/6.17.0-1022-azure

File hashes

Hashes for smallestai-5.11.1.tar.gz
Algorithm Hash digest
SHA256 bd9d673f4ca76892d6e2126420b5a2a1939b8ac56700b91e8f463d5d4fa1eaa0
MD5 db43818c2bad7def932a64fa97629ebf
BLAKE2b-256 48433e334135f8fadd1bc8c40011e6657f1933e299f0e7d61da7515f1630e42c

See more details on using hashes here.

File details

Details for the file smallestai-5.11.1-py3-none-any.whl.

File metadata

  • Download URL: smallestai-5.11.1-py3-none-any.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.9.25 Linux/6.17.0-1022-azure

File hashes

Hashes for smallestai-5.11.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1887d7da2d141bcd5d0f0c0fd81569a786f26b92f986b6ad50834cee53246b60
MD5 45001d21d194354b222984aa496741f3
BLAKE2b-256 f02b4280c190b4007e20b1089c3238db0d0c55083a5d224479a0dad5684fc8ff

See more details on using hashes here.

Release history Release notifications | RSS feed

5.12.0

2 files

5.11.2

2 files

This release

5.11.1 This release

2 files

5.11.0

2 files

5.10.1

2 files

5.10.0

2 files

5.5.0

2 files

5.4.2

2 files

5.4.1

2 files

5.4.0

2 files

5.3.4

2 files

5.3.3

2 files

5.3.2

2 files

5.3.1

2 files

5.3.0

2 files

5.2.0

2 files

5.1.1

2 files

5.1.0

2 files

5.0.0

2 files

4.4.7

2 files

4.4.6

2 files

4.4.4

2 files

4.4.3

2 files

4.4.2

2 files

4.4.1

2 files

4.4.0

2 files

4.3.8

2 files

4.3.7

2 files

4.3.6

2 files

4.3.5

2 files

4.3.4

2 files

4.3.3

2 files

4.3.2

2 files

4.3.1

2 files

4.3.0

2 files

4.2.2

2 files

4.2.1

2 files

4.2.0

2 files

4.1.0

2 files

4.0.1

2 files

4.0.0

2 files

3.1.0

2 files

3.0.3

2 files

3.0.2

2 files

3.0.1

2 files

3.0.0

2 files

2.2.0

2 files

2.1.0

2 files

2.0.0

2 files

1.3.4

2 files

1.3.3

2 files

1.3.2

2 files

1.3.1

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page