Ashrafb commited on
Commit
9995f4e
·
1 Parent(s): a4bb376

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.process(prompt_with_noise)
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)