Update app.py
Browse files
app.py
CHANGED
@@ -73,7 +73,7 @@ def send_it1(inputs, noise_level, style, proc=model_interface):
|
|
73 |
while queue.qsize() >= queue_threshold:
|
74 |
time.sleep(2)
|
75 |
queue.put(prompt_with_noise)
|
76 |
-
output = proc
|
77 |
return output
|
78 |
|
79 |
# ... (Remaining code remains unchanged)
|
|
|
73 |
while queue.qsize() >= queue_threshold:
|
74 |
time.sleep(2)
|
75 |
queue.put(prompt_with_noise)
|
76 |
+
output = proc(prompt_with_noise)
|
77 |
return output
|
78 |
|
79 |
# ... (Remaining code remains unchanged)
|