grandchild / app.py
Renecto's picture
Update app.py
341cb5d verified
raw
history blame
201 Bytes
import gradio as gr
import time
def greet(name):
time.sleep(10)
return "limit 5 " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text", concurrency_limit=5)
demo.launch()