File size: 213 Bytes
65b4435
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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()