Update README in app.py
Browse files
app.py
CHANGED
@@ -704,7 +704,9 @@ with gr.Blocks() as app:
|
|
704 |
|
705 |
with gr.Tabs():
|
706 |
with gr.Tab("README"):
|
707 |
-
gr.Markdown((Path(__file__).parent / "docs.md").read_text())
|
|
|
|
|
708 |
|
709 |
with gr.Tab("Zero-Shot"):
|
710 |
leaderboard = Leaderboard(
|
|
|
704 |
|
705 |
with gr.Tabs():
|
706 |
with gr.Tab("README"):
|
707 |
+
# gr.Markdown((Path(__file__).parent / "docs.md").read_text())
|
708 |
+
html_content = (Path(__file__).parent / "docs.md").read_text()
|
709 |
+
gr.HTML(html_content)
|
710 |
|
711 |
with gr.Tab("Zero-Shot"):
|
712 |
leaderboard = Leaderboard(
|