Duplicated from hmb/hello_world
8c4c5db 4d6447a 8c4c5db 4d6447a
1
2
3
4
5
6
7
8
import gradio as gr def greet(name): return "Hello " + name + "!" demo = gr.Interface(fn=greet, inputs=["text", "state"], outputs=["text", "state"]) demo.launch()