speaches-ai/speaches

Speaches is an OpenAI API-compatible server that provides streaming transcription, translation, and speech generation capabilities.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 34 minutes ago
Added to GitGenius on September 19th, 2026
Created on May 18th, 2024
Open Issues & Pull Requests: 147 (+0)
GitHub issues: Enabled
Number of forks: 450
Total Stargazers: 3,671 (+0)
Total Subscribers: 30 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 3.1 days
Mean response time: 24.6 days
90th percentile: 90.2 days
Tracked items: 245

Most active contributors

Sign in to see contributor activity.

How this project is maintained

Roughly one issue in three opened in the past year never receives a reply. 85% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. 85% of tracked open issues have had no activity in three months, so the open count overstates what is actively being worked. Only 27% of issues opened in the past year have been closed. Three people close 87% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 108
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 336 days
Stale 30+ days: 104
Stale 90+ days: 93

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • enhancement (19)
  • bug (12)
  • documentation (9)
  • model-request (7)
  • good first issue (4)
  • help wanted (4)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Speaches is an OpenAI API-compatible server that provides streaming transcription, translation, and speech generation capabilities.

The tool addresses the need for a self-hosted alternative to cloud-based speech services. It uses faster-whisper for speech-to-text conversion, enabling real-time transcription with streaming output via server-sent events so results arrive as audio is processed rather than requiring the full file to be uploaded first. For text-to-speech, it integrates piper and Kokoro models. The server implements dynamic model loading and unloading, meaning you specify which model to use in each request and it loads automatically, then offloads after a period of inactivity. This approach avoids keeping all models in memory simultaneously.

Speaches suits developers building applications that need speech capabilities without reliance on external APIs, particularly those with privacy or latency concerns. The OpenAI API compatibility means existing tools and SDKs designed for OpenAI's endpoints work directly with this server. The project supports both GPU and CPU inference, making it deployable across different hardware configurations. Docker Compose deployment is available for straightforward setup. The tool handles diverse use cases including audio generation from text, sentiment analysis on recordings, and bidirectional speech-to-speech interactions with models. Streaming transcription is a distinguishing feature for applications requiring incremental results.

Development activity shows consistent engagement with bug reports and feature requests being actively managed through the issue tracker. The project maintains comprehensive documentation at its homepage covering installation and usage patterns. Configuration flexibility is emphasized as a core capability, allowing operators to tune behavior for their specific deployment needs. The codebase demonstrates active maintenance with Docker and containerization as first-class concerns in the deployment story.