gradio/demo/hello_world_2/run.py

13 lines
243 B
Python
Raw Normal View History

2021-05-24 23:31:44 +08:00
import gradio as gr
def greet(name):
return "Hello " + name + "!"
2021-05-24 23:31:44 +08:00
iface = gr.Interface(
fn=greet,
inputs=gr.inputs.Textbox(lines=2, placeholder="Name Here..."),
outputs="text",
)
2021-05-24 23:31:44 +08:00
if __name__ == "__main__":
iface.launch()