younginpiniti commited on
Commit
69caad1
·
1 Parent(s): 8c085f5

fix: Gradio 6.0 버전 호환성 수정

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -283,8 +283,7 @@ def preview_tickers():
283
 
284
  # ========== Gradio UI 구성 ==========
285
  with gr.Blocks(
286
- title="주식 데이터셋 생성기",
287
- theme=gr.themes.Soft()
288
  ) as demo:
289
  gr.Markdown("""
290
  # 📈 나스닥 & 뉴욕증권거래소 주식 데이터셋 생성기
@@ -346,8 +345,7 @@ with gr.Blocks(
346
  label="로그 출력",
347
  lines=30,
348
  max_lines=50,
349
- interactive=False,
350
- show_copy_button=True
351
  )
352
 
353
  # 이벤트 연결
@@ -393,4 +391,4 @@ with gr.Blocks(
393
 
394
 
395
  if __name__ == "__main__":
396
- demo.launch()
 
283
 
284
  # ========== Gradio UI 구성 ==========
285
  with gr.Blocks(
286
+ title="주식 데이터셋 생성기"
 
287
  ) as demo:
288
  gr.Markdown("""
289
  # 📈 나스닥 & 뉴욕증권거래소 주식 데이터셋 생성기
 
345
  label="로그 출력",
346
  lines=30,
347
  max_lines=50,
348
+ interactive=False
 
349
  )
350
 
351
  # 이벤트 연결
 
391
 
392
 
393
  if __name__ == "__main__":
394
+ demo.launch(theme=gr.themes.Soft())