Wauplin HF staff commited on
Commit
a7fe398
1 Parent(s): 089f190

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ from pathlib import Path
4
+
5
+
6
+ README_PATH = Path(__file__).parent / "README.md"
7
+
8
+ with gr.Blocks() as demo:
9
+ gr.Markdown(README_PATH.read_text().split("---")[-1].strip())
10
+
11
+ demo.launch()