File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments