Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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()
|