zac commited on
Commit
3d9aafe
·
1 Parent(s): e422cfb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -22,5 +22,7 @@ examples = [
22
  ["What is the square root of 64?", "The square root of 64 is 8."]
23
  ]
24
 
25
- gr.Interface(fn=generate_text, inputs=input_text, outputs=output_text, title="Llama Language Model", description=description, examples=examples).launch()
26
 
 
 
 
 
22
  ["What is the square root of 64?", "The square root of 64 is 8."]
23
  ]
24
 
 
25
 
26
+ demo = gr.Interface(fn=generate_text, inputs=input_text, outputs=output_text, title="Llama Language Model", description=description, examples=examples).queue()
27
+ demo.queue(concurrency_count=3)
28
+ demo.launch()