audiveris4 / app.py
soiz1's picture
Create app.py
a029d83 verified
raw
history blame
194 Bytes
import gradio as gr
def say_hello():
return "Hello, world!"
demo = gr.Interface(
fn=say_hello,
inputs=None,
outputs="text",
title="Hello World Gradio App"
)
demo.launch()