MOSS-TTS-Realtime Architecture

February 10, 2026 ยท View on GitHub

This document details the MOSS-TTS-Realtime architecture.

1. Overview

MOSS-TTS-RealTime is built on a scalable architecture consisting of a 1.7B-parameter backbone and a 200M-parameter local Transformer, designed to deliver high-quality, low-latency speech synthesis. The backbone encodes linguistic and contextual information and exposes its hidden states to the local Transformer, which autoregressively generates RVQ-based audio tokens. Audio reconstruction is performed using the MOSS-Audio-Tokenizer, enabling efficient and high-fidelity waveform synthesis.

The model adopts a hierarchical input design in which text tokens and speech tokens are processed at different levels, allowing the system to naturally support streaming text input and streaming audio output. This design enables incremental generation while preserving long-range context, making it well suited for real-time conversational scenarios.


2. Technical Specifications

FeatureSpecification
Backbone ModelInitialized from Qwen3-1.7B
Depth Transformer4 Transformer blocks, architecturally aligned with the Qwen3-1.7B backbone
Audio TokenizerCat (Causal Audio Tokenizer)
Sampling Rate24,000 Hz
Frame Rate12.5 Hz (1s โ‰ˆ 12.5 tokens/blocks)
Codebooks16 RVQ layers
Generation ModePurely Autoregressive (AR)

3. Usage

MOSS-TTS-Realtime Usage