gradio/demo/hello_world_2/run.py
2022-02-01 08:40:10 +00:00

13 lines
243 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()