EricCha's picture
Update app.py
65b4435 verified
raw
history blame contribute delete
213 Bytes
import gradio as gr
# Load your README content
with open("README.md", "r") as f:
payload = f.read()
# Create a simple interface to display it
with gr.Blocks() as demo:
gr.Markdown(payload)
demo.launch()