phenomenon1981 commited on
Commit
7986754
1 Parent(s): b72dd25

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -83,9 +83,8 @@ def send_it8(inputs, noise_level, proc1=proc1):
83
  def get_prompts(prompt_text):
84
  return text_gen(prompt_text)
85
 
86
- thread = threading.Thread(target=get_prompts, args=(prompt_text,), daemon=True)
87
  thread.start()
88
- thread.join()
89
 
90
 
91
 
 
83
  def get_prompts(prompt_text):
84
  return text_gen(prompt_text)
85
 
86
+ thread = threading.Thread(target=get_prompts, args=(prompt_text,))
87
  thread.start()
 
88
 
89
 
90