gradio/demo/hello_world.py

8 lines
177 B
Python
Raw Normal View History

2020-10-27 06:27:28 +08:00
import gradio as gr
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
iface.launch()