File tree Expand file tree Collapse file tree 1 file changed +23
-5
lines changed
Expand file tree Collapse file tree 1 file changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,19 @@ pip install speechmatics-flow
3939A Voice Agent Python client for Speechmatics Real-Time API.
4040
4141``` bash
42+ # Standard installation
4243pip 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:
110127pip install speechmatics-rt
111128pip install speechmatics-batch
112129pip install speechmatics-flow
113- pip install speechmatics-voice
130+ pip install speechmatics-voice[smart]
131+ pip install speechmatics-tts
114132```
115133
116134## Docs
You can’t perform that action at this time.
0 commit comments