From 1b137593873645ed5459f16db25877f73d7fa1b7 Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 27 Apr 2023 17:24:00 -0700 Subject: [PATCH] different commands --- basic_text_to_speech/talk.py | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/basic_text_to_speech/talk.py b/basic_text_to_speech/talk.py index 769c11a..967b6bb 100644 --- a/basic_text_to_speech/talk.py +++ b/basic_text_to_speech/talk.py @@ -13,8 +13,20 @@ if __name__ == '__main__': while True: try: print("initializing") - robot("Hello world how are you doing today?") - time.sleep(10) + robot("hey Heran?") + robot("Based on your age, health, and habits, you have 10950 days left") + robot("Make sure you chant hare krishna more") + time.sleep(5) + + robot("hey Kam?") + robot("Hmm, you have time, but make sure to surrender to jesus") + time.sleep(5) + + robot("hey Arjun") + robot("You have maybe 12000 days left to live") + robot("just drink some water") + time.sleep(5) + except KeyboardInterrupt: break