File size: 189 Bytes
81898e8
 
 
 
 
5b62fe7
81898e8
 
 
5b62fe7
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr


def send_inputs(inputs):
    print(inputs)
    return "Hello"


if __name__ == "__main__":
    gr.Interface(fn=send_inputs, inputs=["text"], outputs="image").launch()