mihalykiss commited on
Commit
fa66b44
·
1 Parent(s): 020ecdf

UI - theme

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -52,8 +52,8 @@ description = """
52
 
53
  Detect AI-generated texts with precision using the new **ModernBERT** model, fine-tuned for machine-generated text detection, and capable of identifying 40 different models.
54
 
55
- ✔️ **Identify AI Models:** Reveals which LLM generated the text if detected as AI.
56
- ✔️ **Human Verification:** Marks human-written text with a green checkmark.
57
 
58
  **Note:** The longer the text, the better the detection accuracy.
59
  """
@@ -95,7 +95,7 @@ iface = gr.Blocks(css="""
95
  body {
96
  background: #1E1E2F;
97
  color: #E1E1E6;
98
- font-family: 'Aptos', sans-serif;
99
  padding: 20px;
100
  display: flex;
101
  justify-content: center;
@@ -140,6 +140,11 @@ iface = gr.Blocks(css="""
140
  font-size: 20px;
141
  color: #E1E1E6;
142
  }
 
 
 
 
 
143
  """)
144
 
145
  with iface:
 
52
 
53
  Detect AI-generated texts with precision using the new **ModernBERT** model, fine-tuned for machine-generated text detection, and capable of identifying 40 different models.
54
 
55
+ -- 🤖 - **Identify AI Models:** Reveals which LLM generated the text if detected as AI.
56
+ -- ✅ - **Human Verification:** Marks human-written text with a green checkmark.
57
 
58
  **Note:** The longer the text, the better the detection accuracy.
59
  """
 
95
  body {
96
  background: #1E1E2F;
97
  color: #E1E1E6;
98
+ font-family: 'Roboto Mono', sans-serif;
99
  padding: 20px;
100
  display: flex;
101
  justify-content: center;
 
140
  font-size: 20px;
141
  color: #E1E1E6;
142
  }
143
+ #description_box {
144
+ border-bottom: 2px solid #4CAF50;
145
+ padding-bottom: 15px;
146
+ margin-bottom: 20px;
147
+ }
148
  """)
149
 
150
  with iface: