bug_test_2 / app.py
omerXfaruq's picture
allow_screenshot
8eeaf9b
raw
history blame contribute delete
196 Bytes
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)