gradio/demo/hello_world/run.py

11 lines
183 B
Python
Raw Normal View History

2020-10-27 06:27:28 +08:00
import gradio as gr
2022-02-09 02:56:13 +08:00
2020-10-27 06:27:28 +08:00
def greet(name):
return "Hello " + name + "!!"
2022-02-09 02:56:13 +08:00
2020-10-27 06:27:28 +08:00
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
2021-05-22 12:41:38 +08:00
iface.launch()