Metadata-Version: 2.1
Name: ttslab
Version: 0.1.0
Summary: Run TTS models.
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: rich
Requires-Dist: flask
Requires-Dist: gitpython
Requires-Dist: uv

# TTSLab 🔬

Run TTS models. Think ComfyUI but for TTS.

## Installation

```bash
pip install ttslab
```

## Usage

```bash
ttslab serve
```

Starts up a web UI.

## Models

You can install models from the official model index (coming soon):

```bash
ttslab install ttslab/f5-tts # currently does not work
```

Or you can install models from a Git repository:

```bash
ttslab install https://github.com/ttslab-project/f5-tts
```

Or you can install models from a local directory:

```bash
ttslab install ./f5-tts --local
```

## Tips

### Running out of disk space?

You can delete the `~/.ttslab` directory to free up space.

### Uninstall TTSLab

```bash
pip uninstall ttslab
rm -rf ~/.ttslab
```


## License

This project is licensed under the BSD-3-Clause license. See the LICENSE file for details.
