kyutai-labs/pocket-tts

A TTS that fits in your CPU (and pocket)

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 1 minute ago
Added to GitGenius on September 1st, 2026
Created on January 7th, 2026
Open Issues & Pull Requests: 54 (+0)
GitHub issues: Enabled
Number of forks: 977
Total Stargazers: 9,402 (+0)
Total Subscribers: 70 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 14.5 hours
Mean response time: 4.3 days
90th percentile: 8.9 days
Tracked items: 119

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 84% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. 58% of tracked open issues have had no activity in three months. Only 6% of issues opened in the past year have been closed. Three people close 75% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 50
New in 7 days: 2
Closed in 7 days: 5
Avg open age: 139 days
Stale 30+ days: 38
Stale 90+ days: 27

Recent activity

Opened in 7 days: 2
Closed in 7 days: 4
Comments in 7 days: 9
Events in 7 days: 19

Top labels

  • help wanted (17)
  • good first issue (9)
  • enhancement (4)
  • documentation (2)

Detailed Description

Pocket TTS is a lightweight text-to-speech engine designed to run efficiently on CPUs without requiring GPUs or external web APIs.

The tool addresses the friction of deploying TTS systems by packaging a compact 100-million-parameter model that generates speech through a simple pip install and function call. It streams audio output, delivering the first chunk in roughly 200 milliseconds and generating speech faster than real-time on modest hardware like a MacBook Air M4, using only 2 CPU cores. The model supports eight languages including English, French, German, Portuguese, Italian, and Spanish, handles arbitrarily long text inputs, and includes voice cloning capabilities.

Pocket TTS suits developers building applications that need on-device speech synthesis without infrastructure overhead. It works well for edge deployments, client-side browser implementations, and scenarios where latency and independence from cloud services matter. The tool requires Python 3.10 or later and PyTorch 2.5 or newer, but does not mandate the GPU version of PyTorch. A command-line interface and Python API both ship with the package, and a web demo is available for trying the tool without installation.

The project maintains active development with recent releases of training code that allow users to train custom models, and it actively solicits community contributions of trained models. The codebase includes comprehensive documentation, a technical report, and an academic paper describing the approach. The tool is available through standard Python package management and can run directly in web browsers for client-side use.