apsys commited on
Commit
9d99b3a
·
1 Parent(s): 5f19f5b
Files changed (2) hide show
  1. src/about.py +7 -4
  2. src/display/css_html_js.py +1 -1
src/about.py CHANGED
@@ -19,10 +19,13 @@ Models are evaluated on their ability to properly refuse harmful requests and de
19
  across multiple categories and test scenarios.
20
  """
21
 
22
- LLM_BENCHMARKS_TEXT = """
23
- GuardBench checks how well models handle safety challenges from misinformation and self-harm to sexual content and corruption.\t
24
- Models are tested with regular and adversarial prompts to see if they can avoid saying harmful things.\t
25
- We track how accurate they are, how often they make mistakes, and how fast they respond.
 
 
 
26
  """
27
 
28
  EVALUATION_QUEUE_TEXT = """
 
19
  across multiple categories and test scenarios.
20
  """
21
 
22
+ # NOTE: The trailing spaces (two spaces) at the end of lines below are intentional.
23
+ # They are required for Markdown rendering to create line breaks without paragraph breaks.
24
+ # Please do not remove them during auto-formatting or cleanup.
25
+ LLM_BENCHMARKS_TEXT = """ # noqa: W291
26
+ GuardBench checks how well models handle safety challenges — from misinformation and self-harm to sexual content and corruption. # noqa: E501
27
+ Models are tested with regular and adversarial prompts to see if they can avoid saying harmful things. # noqa: E501
28
+ We track how accurate they are, how often they make mistakes, and how fast they respond. # noqa: E501
29
  """
30
 
31
  EVALUATION_QUEUE_TEXT = """
src/display/css_html_js.py CHANGED
@@ -6,7 +6,7 @@ custom_css = """
6
  .markdown-text {
7
  font-size: 16px !important;
8
  text-align: justify !important;
9
- line-height: 0.8 !important;
10
  margin-top: 10px !important;
11
  margin-bottom: 10px !important;
12
  }
 
6
  .markdown-text {
7
  font-size: 16px !important;
8
  text-align: justify !important;
9
+ line-height: 1.0 !important;
10
  margin-top: 10px !important;
11
  margin-bottom: 10px !important;
12
  }