You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduces ttsfm/audio.py with reusable audio chunk combining logic and a new combine_responses helper. Adds auto_combine support to both sync and async clients and CLI, enabling single-file output for long text. Updates documentation and tests to cover the new behavior, and bumps version to 3.3.0-alpha3.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [3.3.0-alpha3] - 2025-09-18
9
+
10
+
### Added
11
+
- Centralised audio chunk combining in `ttsfm/audio.py`, including the reusable `combine_responses` helper for both core and web flows.
12
+
-`auto_combine=True` support in the synchronous/asynchronous clients and CLI delivers a single audio file for long text (pydub still optional for non-WAV output).
13
+
- Regression tests (`tests/test_clients.py`) covering the new combination paths.
14
+
15
+
### Changed
16
+
- Long-text splitting now falls back to word-level chunks with a small tolerance so punctuation stays intact while respecting `max_length` limits.
17
+
18
+
### Documentation
19
+
- README (EN/ZH) highlights the Python auto-combine option and CLI flag; `AI_NOTES.md` captures the refreshed test instructions.
20
+
21
+
### Testing
22
+
- Added regression coverage for the audio helper refactor and client auto-combine behaviour; `pytest` commands documented for follow-up runs.
0 commit comments