Metadata-Version: 2.4
Name: elizaos-plugin-simple-voice
Version: 2.0.0a5
Summary: Retro 1980s SAM Text-to-Speech plugin for elizaOS agents
Project-URL: Homepage, https://github.com/ai16z/eliza
Project-URL: Repository, https://github.com/ai16z/eliza/tree/main/plugins/plugin-simple-voice/python
Author: elizaOS Contributors
License-Expression: MIT
Keywords: 1980s,elizaos,plugin,retro,sam,text-to-speech,tts,voice-synthesis
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
Requires-Python: >=3.10
Requires-Dist: numpy>=1.24.0
Provides-Extra: dev
Requires-Dist: mypy>=1.0.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
Requires-Dist: pytest-xprocess<1.0.0,>=0.23.0; extra == 'dev'
Requires-Dist: pytest>=7.0.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Description-Content-Type: text/markdown

# Eliza Plugin Simple Voice (Python)

Python implementation of the SAM Text-to-Speech plugin.

## Installation

```bash
pip install -e .
```

## Usage

```python
from eliza_plugin_simple_voice import SamTTSService, SamTTSOptions

service = SamTTSService()
audio = service.generate_audio("Hello", SamTTSOptions(speed=72))
wav = service.create_wav_buffer(audio)
```

## Testing

```bash
pytest
```
