Jin Zhu commited on
Commit
a9e5bc4
·
1 Parent(s): ed3c3b3

Update app.py

Browse files
Files changed (1) hide show
  1. src/app.py +2 -1
src/app.py CHANGED
@@ -117,6 +117,7 @@ MODEL_CONFIG = {
117
  }
118
 
119
  DOMAINS = [
 
120
  "Academia",
121
  "Finance",
122
  "Government",
@@ -204,7 +205,7 @@ with col_domain:
204
  selected_domain = st.selectbox(
205
  label="Domain",
206
  options=DOMAINS,
207
- index=0, # Default to "Academia"
208
  help="💡 **Tip:** Select the domain that best matches your text for improved detection accuracy."
209
  )
210
 
 
117
  }
118
 
119
  DOMAINS = [
120
+ "General",
121
  "Academia",
122
  "Finance",
123
  "Government",
 
205
  selected_domain = st.selectbox(
206
  label="Domain",
207
  options=DOMAINS,
208
+ index=0, # Default to General
209
  help="💡 **Tip:** Select the domain that best matches your text for improved detection accuracy."
210
  )
211