leaderboard / app.py
saattrupdan's picture
Create app.py
b5a56eb verified
raw
history blame
113 Bytes
import gradio as gr
def main():
return gr.HTML("<h1>Test</h1>")
demo = gr.Interface(fn=greet)
demo.launch()