Metadata-Version: 2.4
Name: ttsdb_f5_tts
Version: 0.1.0
Summary: F5-TTS model for TTSDB
Requires-Python: <=3.14,>=3.10
Requires-Dist: f5-tts>=1.1.15
Requires-Dist: numba==0.63.1
Requires-Dist: ttsdb-core>=0.1.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# F5-TTS

The model description is sourced from `config.yaml` (`metadata.description`).

## Installation

```bash
just setup f5-tts
```

## Usage

```python
from ttsdb_f5_tts import F5TTS

model = F5TTS(model_id="ttsds/f5-tts")
audio, sr = model.synthesize(
    text="Hello, world!",
    reference_audio="path/to/reference.wav"
)
```

## Audio Examples

Generated audio samples from integration tests:

| Language | Text | Audio |
|----------|------|-------|
| English | "With tenure, Suzie'd have all the more leisure for yachting, but her publications are no good." | [audio_examples/en_test_001.wav](audio_examples/en_test_001.wav) |
| Chinese | "視野無限廣，窗外有藍天" | [audio_examples/zh_test_001.wav](audio_examples/zh_test_001.wav) |

To regenerate examples, run:
```bash
just test-integration f5-tts
```
