Skip to content

Commit 029df43

Browse files
author
self
committed
Added a note at startup to inform users about how to talk with the bot. Disabled a useless thing I had that was slowing startup.
1 parent 4330b3b commit 029df43

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

main.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def __init__(self):
122122

123123
info(f'Model Set To {self.chatbot.gpt_model}', 'good')
124124

125-
self.listen_for_audio(load_run=True)
125+
#self.listen_for_audio(load_run=True) # This is useless, why did I even add it lol. You'll know if your mic doesn't work
126126

127127
self.running = True
128128
self.main_thread = threading.Thread(target=self.main_loop)
@@ -179,6 +179,9 @@ def main_loop(self):
179179

180180
info('Main Loop Running', 'good')
181181
info(f'Session Created With {self.chatbot.name}', 'good')
182+
info('Press Space To Start Recording, Then Press Space Again To Stop', 'topic')
183+
print('\n') # This is needed for the newline after the topic, since the topic doesn't have one
184+
182185
while self.running:
183186
change_color(self.display, self.color)
184187
# Creating a loop to check events that

0 commit comments

Comments
 (0)