test / app.py
p1atdev's picture
Update app.py
cea17ef verified
raw
history blame contribute delete
147 Bytes
import gradio as gr
with gr.Blocks() as demo:
with gr.Column():
gr.Markdown(" # Test")
if __name__ == "__main__":
demo.launch()