File size: 184 Bytes
81898e8
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr


def send_inputs(inputs):
    print(inputs)


if __name__ == "__main__":
    gr.Interface(fn=send_inputs, inputs=["sketchpad"], outputs="label").launch(share=True)