haepada commited on
Commit
f0b173d
·
verified ·
1 Parent(s): 90b1cf1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -675,8 +675,8 @@ def create_interface():
675
  if audio is None:
676
  return (
677
  state, # state
678
- "음성을 먼저 녹음해주세요.", # 번째 markdown (status)
679
- "", # 번째 markdown (result)
680
  gr.update(visible=True), # blessing_section visibility
681
  gr.update(visible=False) # entry_guide_section visibility
682
  )
@@ -710,8 +710,8 @@ def create_interface():
710
 
711
  return (
712
  new_state, # state
713
- "축원이 완료되었습니다.", # 번째 markdown (status)
714
- analysis_text, # 번째 markdown (result)
715
  gr.update(visible=False), # blessing_section visibility
716
  gr.update(visible=True) # entry_guide_section visibility
717
  )
 
675
  if audio is None:
676
  return (
677
  state, # state
678
+ "음성을 먼저 녹음해주세요.", # 상태 메시지
679
+ "", # 분석 결과
680
  gr.update(visible=True), # blessing_section visibility
681
  gr.update(visible=False) # entry_guide_section visibility
682
  )
 
710
 
711
  return (
712
  new_state, # state
713
+ "축원이 완료되었습니다.", # 상태 메시지
714
+ analysis_text, # 분석 결과
715
  gr.update(visible=False), # blessing_section visibility
716
  gr.update(visible=True) # entry_guide_section visibility
717
  )