Spaces:
Runtime error
Runtime error
| 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) | |