File size: 205 Bytes
a7fe398
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

from pathlib import Path


README_PATH = Path(__file__).parent / "README.md"

with gr.Blocks() as demo:
    gr.Markdown(README_PATH.read_text().split("---")[-1].strip())

demo.launch()