eduagarcia commited on
Commit
b74e881
1 Parent(s): 67cd6fc

add changelog tab

Browse files
Files changed (2) hide show
  1. app.py +3 -0
  2. src/display/changelog.py +6 -0
app.py CHANGED
@@ -15,6 +15,7 @@ from src.display.about import (
15
  FAQ_TEXT,
16
  TITLE,
17
  )
 
18
  from src.display.css_html_js import custom_css
19
  from src.display.utils import (
20
  BENCHMARK_COLS,
@@ -453,6 +454,8 @@ with demo:
453
  ],
454
  submission_result,
455
  )
 
 
456
  """ #TODO: FIX CITATIONS
457
  with gr.Row():
458
  with gr.Accordion("📙 Citation", open=False):
 
15
  FAQ_TEXT,
16
  TITLE,
17
  )
18
+ from src.display.changelog import CHANGELOG_TEXT
19
  from src.display.css_html_js import custom_css
20
  from src.display.utils import (
21
  BENCHMARK_COLS,
 
454
  ],
455
  submission_result,
456
  )
457
+ with gr.TabItem("⏳ Changelog", elem_id="llm-benchmark-tab-table", id=5):
458
+ gr.Markdown(CHANGELOG_TEXT, elem_classes="markdown-text")
459
  """ #TODO: FIX CITATIONS
460
  with gr.Row():
461
  with gr.Accordion("📙 Citation", open=False):
src/display/changelog.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ CHANGELOG_TEXT = f"""
2
+ # Changes made to the leaderboard
3
+
4
+ ### [0.1.0] - 2024-02-01
5
+ Protype version launched with 7 benchmarks ENEM, BLUEX, OAB Exams, ASSIN 2 RTE and STS, FAQUAD NLI and SPARROW POR
6
+ """