File size: 196 Bytes
ce12d47
 
 
 
 
 
 
 
 
8eeaf9b
ce12d47
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr

image_size = 384


def temp(input):
    return "output"


iface = gr.Interface(fn=temp, inputs="sketchpad", outputs="textbox", allow_screenshot=True)
iface.launch(debug=True)