Skip to content

Commit 4fd86ce

Browse files
committed
main README update
1 parent 1615f0d commit 4fd86ce

File tree

1 file changed

+23
-5
lines changed

1 file changed

+23
-5
lines changed

README.md

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,19 @@ pip install speechmatics-flow
3939
A Voice Agent Python client for Speechmatics Real-Time API.
4040

4141
```bash
42+
# Standard installation
4243
pip install speechmatics-voice
44+
45+
# With SMART_TURN (ML-based turn detection)
46+
pip install speechmatics-voice[smart]
47+
```
48+
49+
### (Beta) TTS Client (`speechmatics-tts`)
50+
51+
An async Python client for Speechmatics TTS API.
52+
53+
```bash
54+
pip install speechmatics-tts
4355
```
4456

4557
## Development
@@ -60,16 +72,21 @@ speechmatics-python-sdk/
6072
│ ├── flow/
6173
│ │ ├── pyproject.toml
6274
│ │ └── README.md
63-
75+
6476
│ ├── voice/
6577
│ │ ├── pyproject.toml
6678
│ │ └── README.md
79+
│ │
80+
│ ├── tts/
81+
│ │ ├── pyproject.toml
82+
│ │ └── README.md
6783
6884
├── tests/
6985
│ ├── batch/
70-
│ └── rt/
71-
│ └── flow/
72-
│ └── voice/
86+
│ ├── rt/
87+
│ ├── flow/
88+
│ ├── voice/
89+
│ └── tts/
7390
7491
├── examples/
7592
├── Makefile
@@ -110,7 +127,8 @@ Each package can be installed separately:
110127
pip install speechmatics-rt
111128
pip install speechmatics-batch
112129
pip install speechmatics-flow
113-
pip install speechmatics-voice
130+
pip install speechmatics-voice[smart]
131+
pip install speechmatics-tts
114132
```
115133

116134
## Docs

0 commit comments

Comments
 (0)