Skip to main content

PyPI - Version PyPI - Python Version PyPI - Downloads codecov

UtterPlan

UtterPlan is an engine-independent TTS planning compiler and interchange format. It converts text and SSMD into deterministic semantic speech plans containing prepared spoken text, language runs, segments, pauses, directives, markers, and render units. It stops before G2P and produces no audio.

CLI

Compile literal text directly:

utterplan compile "Doctor Smith bought 5 kg." --lang en-us --json

Compile a file to a plan file:

utterplan compile chapter.ssmd --lang en-us -o chapter.utterplan.json

Use stdin and shell pipelines:

cat chapter.ssmd | utterplan compile --lang en-us --input-format ssmd | jq .

The CLI also provides:

utterplan --version
utterplan validate chapter.utterplan.json
utterplan inspect chapter.utterplan.json --segment 0
utterplan explain chapter.utterplan.json

explain presents the compiled plan as a human-readable speech plan, while inspect exposes lower-level diagnostic fields. Compile JSON is written to stdout when no output file is supplied. Status messages use stderr, and existing output files require --force.

Planning defaults

The minimal CLI defaults are explicit: spokenform is the default text-preparation backend, tts is the default pause mode, and spacy off is the default linguistic-resource policy. With spacy off, UtterPlan uses its deterministic fallback tokenizer and analysis and does not depend on an installed spaCy model.

spacy auto is opt-in. When enabled and a compatible local model is available, UtterPlan may expose richer tokenization, POS tags, lemmas, and tags; auto is not the default.

Python API

from utterplan import PlannerConfig, UtterancePlan, UtterancePlanner

planner = UtterancePlanner(PlannerConfig(language="en-us"))
plan = planner.plan("Doctor Smith bought 5 kg of apples.")
plan.save("example.utterplan.json")
assert UtterancePlan.load("example.utterplan.json") == plan

The stable in-process boundary is PlannerConfig, UtterancePlanner, and the immutable UtterancePlan object. JSON is the portable persistence and interchange format; an in-process renderer can consume the Python object directly.

Renderer-consumer boundary

Renderers consume PlanSegment.text, which is prepared/spoken text, and use spoken_start/spoken_end for spoken-text coordinates. Resolved segment pauses, language, directives, annotations, boundaries, markers, units, and document metadata are public plan fields. Plans contain no phonemes, model tokens, model sessions, renderer configuration, provider documents, or audio.

The intended dependency direction is:

PyKokoro or another renderer -> UtterPlan

UtterPlan does not depend on PyKokoro, G2P engines, ONNX Runtime, or audio packages. Consumer-specific compatibility tests belong in the consuming renderer repository rather than UtterPlan's test suite.

Documentation

Versions

The package version is dynamically derived from Git tags by setuptools-scm. The first public alpha package release is 0.1.0. The package version and UtterPlan schema_version is independent from the package version. Current plans use schema version 2; schema v1 remains frozen and supported through a pure v1-to-v2 migration.

Schema v2 persists final pass-B token facts, including optional POS, tag, lemma, and morphology, plus per-language-run provider provenance. Unit hashes use utterplan-unit-v2 and include pronunciation-relevant token semantics. Migration is representation conversion only and never reruns planning or linguistic analysis.

Development

python -m pip install -e '.[dev,docs]'
python -m pytest -q
ruff check .
mypy utterplan
python -m build
sphinx-build -W --keep-going -b html docs docs/_build/html

Release files for utterplan 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for utterplan 0.2.0
File Size Uploaded
utterplan-0.2.0.tar.gz 192.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for utterplan 0.2.0
File Interpreter ABI Platform
utterplan-0.2.0-py3-none-any.whl Python 3 none any Details

Total release size: 257.3 kB

Release files / utterplan-0.2.0.tar.gz

Download URL utterplan-0.2.0.tar.gz
Size 192.1 kB
Tags Source
SHA-256 checksum
How to use checksums
4d7fff469cccf1385687a6d6850cbaf7019efedbfd8ed20953581e7971f60a7c
BLAKE2b-256 checksum
How to use checksums
927b291603b72d774adff98c0bbf4cd921b8f191e59d2b563d2a6aae62b73764
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.14

Release files / utterplan-0.2.0-py3-none-any.whl

Download URL utterplan-0.2.0-py3-none-any.whl
Size 65.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
6685b608d2350ec62d9072b1c9a6ce8127d26676c5a87d7a9c731ebe389bb315
BLAKE2b-256 checksum
How to use checksums
ad171b0e1308eab41e18a69aff571a67c2e65ff0d4fd0a93c1c284f8950a8730
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.14

Release history Release notifications | RSS feed

0.3.0

2 release files

This release

0.2.0 This release

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page