phenomenon1981 commited on
Commit
dfd38e5
·
1 Parent(s): eabf68e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -5,7 +5,6 @@ from pathlib import Path
5
  import random
6
  import string
7
  import time
8
- from queue import Queue
9
  import threading
10
  from threading import Thread
11
 
@@ -77,7 +76,7 @@ def send_it8(inputs, noise_level, proc1=proc1):
77
  return output8
78
 
79
 
80
- def get_prompts(prompt_text, queue=None):
81
  return text_gen(prompt_text)
82
 
83
 
 
5
  import random
6
  import string
7
  import time
 
8
  import threading
9
  from threading import Thread
10
 
 
76
  return output8
77
 
78
 
79
+ def get_prompts(prompt_text):
80
  return text_gen(prompt_text)
81
 
82