444 / app.py
suhpau's picture
Create app.py
3025b45 verified
raw
history blame contribute delete
231 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
demo = gr.Interface(
fn=greet,
inputs=gr.Textbox(label="Your name"),
outputs=gr.Textbox(label="Output")
)
if __name__ == "__main__":
demo.launch()