diff --git a/voice/play-tts-into-call.py b/voice/play-tts-into-call.py new file mode 100644 index 0000000..1e9a8e1 --- /dev/null +++ b/voice/play-tts-into-call.py @@ -0,0 +1,9 @@ +import nexmo + + +client = nexmo.Client( + application_id=APPLICATION_ID, + private_key=APPLICATION_PRIVATE_KEY_PATH, +) + +client.send_speech(NEXMO_CALL_UUID, text='Hello from Nexmo')