try-gradio / app.py
shirleyhe4's picture
Rename hello_gradio.py to app.py
acc35f7
raw
history blame contribute delete
351 Bytes
import gradio as gr
def greet(name):
return "Hello, glad to have you here! " + name + "If any questions or idea, feel free to leave comments or send email to hexiyu@hexiyu2022.com!"
demo = gr.Interface(
fn=greet,
inputs=gr.Textbox(lines=3, placeholder="Type in what you want to say"),
outputs="text",
)
demo.launch(share=True)