demm / app.py
thelip's picture
Update app.py
f192afa verified
raw
history blame
288 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(lambda x: x, "image", "image")
demo.launch(max_file_size="5mb")
# or
demo.launch(max_file_size=5 * gr.FileSize.MB)
demo.launch(share=True) # Share your demo with just 1 extra parameter πŸš€