gradio/demo/hello_world_2/run.py
2022-03-28 14:22:49 -07:00

16 lines
265 B
Python

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