seawolf2357 commited on
Commit
73e97d1
·
verified ·
1 Parent(s): 13afef8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -161,11 +161,11 @@ interface = grad.Interface(
161
  title=title,
162
  description=description,
163
  article=article,
164
- allow_flagging='never',
165
  cache_examples=False,
166
  css=custom_css,
167
- theme="dark" # 테마 설정을 간단히 "dark"로 변경
168
  )
169
 
170
  # Launch the interface
171
- interface.launch(enable_queue=True, debug=True)
 
161
  title=title,
162
  description=description,
163
  article=article,
164
+ flagging_mode="never",
165
  cache_examples=False,
166
  css=custom_css,
167
+ theme=grad.themes.Soft() # 기본 제공되는 Soft 테마 사용
168
  )
169
 
170
  # Launch the interface
171
+ interface.launch(debug=True)