| Crates.io | rwkv-tts-rs |
| lib.rs | rwkv-tts-rs |
| version | 0.2.5 |
| created_at | 2025-10-15 14:41:02.542906+00 |
| updated_at | 2025-10-15 14:41:02.542906+00 |
| description | A high-performance Text-to-Speech (TTS) system based on RWKV model with zero-shot voice cloning capabilities |
| homepage | https://ai00-x.github.io/rwkv-agent-kit/ |
| repository | https://github.com/Ai00-X/rwkv-agent-kit |
| max_upload_size | |
| id | 1884519 |
| size | 671,233 |
中文版本 | English Version
RWKV TTS Rust 是一个使用 Rust 构建的高性能语音合成实现,基于 RWKV 语言模型,具有以下特点:

使用提供的构建脚本自动完成编译:
# Linux/macOS
sh build.sh
# Windows (使用 PowerShell)
.\build.ps1
构建脚本将自动:
# 构建 release 版本
cargo build --release
# 运行服务器
cargo run --release --bin rwkvtts_server
编译完成后,可以通过以下方式运行:
# 使用默认端口 3000
cargo run --release --bin rwkvtts_server
# 或指定自定义端口
cargo run --release --bin rwkvtts_server -- --port 8080
然后在浏览器中打开 http://localhost:3000 访问 Web 界面。
对于不想自行编译的用户,可以从 Releases 页面 下载预编译的可执行文件:
rwkvtts_server.exe 或在命令行运行./rwkvtts_server首次运行时会自动下载所需的模型文件。
MIT License