aa6883f 0b3d878 aa6883f c89315b aa6883f
1
2
3
4
5
6
7
import gradio as gr def response(message): return "Hello " + message + "!!" iface = gr.Interface(fn=response, inputs="text", outputs="text") iface.launch()