Skip to content

Commit 71d5b40

Browse files
authored
Merge pull request #26 from nexmo-community/play-tts-into-call
Add play TTS into call building block
2 parents 8afa613 + 5c86906 commit 71d5b40

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

voice/play-tts-into-call.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import nexmo
2+
3+
4+
client = nexmo.Client(
5+
application_id=APPLICATION_ID,
6+
private_key=APPLICATION_PRIVATE_KEY_PATH,
7+
)
8+
9+
client.send_speech(NEXMO_CALL_UUID, text='Hello from Nexmo')

0 commit comments

Comments
 (0)