File size: 237 Bytes
0fc235e
 
 
 
ac36ca5
 
 
0fc235e
 
d3ddb57
0fc235e
ac36ca5
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python
from pathlib import Path

import gradio as gr
from gradio_space_ci import enable_space_ci

enable_space_ci()

with gr.Blocks() as demo:
    gr.Markdown(Path("README.md").read_text().split("---")[-1])

demo.launch()