audiveris4 / app.py
soiz1's picture
Update app.py
8395920 verified
raw
history blame contribute delete
209 Bytes
print("hello")
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()