gradio/demo/hello_world/run.py

11 lines
181 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-03-29 05:22:49 +08:00
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
2020-10-27 06:27:28 +08:00
if __name__ == "__main__":
2022-03-29 05:22:49 +08:00
demo.launch()