Staticaliza commited on
Commit
d4bf10a
1 Parent(s): 7f42d00

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -126,7 +126,7 @@ with gr.Blocks() as demo:
126
  with gr.Column():
127
  output = gr.Textbox(label = "Output", value = "", lines = 50)
128
 
129
- run.click(predict, inputs = [access_key, instruction, history, input, wrap, model, temperature, top_p, top_k, rep_p, max_tokens, stop_seqs, seed], outputs = [output, input, history])
130
  clear.click(clear_history, [], history)
131
  cloud.click(maintain_cloud, inputs = [], outputs = [input, output])
132
 
 
126
  with gr.Column():
127
  output = gr.Textbox(label = "Output", value = "", lines = 50)
128
 
129
+ run.click(predict, inputs = [access_key, instruction, history, input, wrap, model, temperature, top_p, top_k, rep_p, max_tokens, stop_seqs, seed], outputs = [output, input, history], queue = False)
130
  clear.click(clear_history, [], history)
131
  cloud.click(maintain_cloud, inputs = [], outputs = [input, output])
132