File size: 288 Bytes
c4868a7
 
 
 
 
f192afa
 
 
 
 
c4868a7
 
1
2
3
4
5
6
7
8
9
10
11
12
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 πŸš€