Remove some debug messages

This commit is contained in:
Melissa LeBlanc-Williams 2023-03-31 17:34:40 -07:00
parent 2105ebed55
commit f14c120d98

View file

@ -204,7 +204,6 @@ class Bear:
print("Starting mouth movement thread") print("Starting mouth movement thread")
while True: while True:
if self.do_mouth_movement: if self.do_mouth_movement:
print("Moving mouth")
self._move_mouth_motor(dir_open=True) self._move_mouth_motor(dir_open=True)
self._move_mouth_motor(dir_open=False) self._move_mouth_motor(dir_open=False)
@ -254,7 +253,6 @@ def main():
print("Got response from ChatGPT. Beginning speech synthesis.") print("Got response from ChatGPT. Beginning speech synthesis.")
bear.move_arms(hide=False) bear.move_arms(hide=False)
bear.speak(chat_response) bear.speak(chat_response)
print("Done speaking.")
else: else:
print("Partial Phrase...") print("Partial Phrase...")
transcription[-1] = text transcription[-1] = text