pwenker commited on
Commit
666e7a8
·
1 Parent(s): 135d824

Prepare HF space

Browse files
Files changed (2) hide show
  1. README.md +2 -2
  2. src/chessli2/gui.py +3 -1
README.md CHANGED
@@ -26,6 +26,6 @@ This overwhelming support has inspired me to develop a sleek new version of Ches
26
 
27
  Chessli2 is here to support your journey to becoming a chess master. Dive in and start enhancing your skills today! 🚀
28
 
29
- ## How-to
30
 
31
- Coming soon...
 
26
 
27
  Chessli2 is here to support your journey to becoming a chess master. Dive in and start enhancing your skills today! 🚀
28
 
29
+ ## Quickstart
30
 
31
+ Try it directly out at [Huggingface Spaces](https://pwenker-chessli2.hf.space/).
src/chessli2/gui.py CHANGED
@@ -20,7 +20,9 @@ nags = {
20
 
21
  with gr.Blocks() as demo:
22
  with gr.Tab("Welcome"):
23
- gr.Markdown(readme_file.read_text())
 
 
24
  with gr.Tab("Games & Mistakes"):
25
  gr.Markdown("Fetch your games and download a CSV with your mistakes")
26
 
 
20
 
21
  with gr.Blocks() as demo:
22
  with gr.Tab("Welcome"):
23
+ readme = readme_file.read_text()
24
+ gr_readme = readme.split('---')[2].strip()
25
+ gr.Markdown(gr_readme)
26
  with gr.Tab("Games & Mistakes"):
27
  gr.Markdown("Fetch your games and download a CSV with your mistakes")
28