gradio/demo/hello_world_2.py
2021-05-24 08:31:44 -07:00

11 lines
234 B
Python

import gradio as gr
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(
fn=greet,
inputs=gr.inputs.Textbox(lines=2, placeholder="Name Here..."),
outputs="text")
if __name__ == "__main__":
iface.launch()