Update app.py
Browse files
app.py
CHANGED
@@ -675,8 +675,8 @@ def create_interface():
|
|
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,8 +710,8 @@ def create_interface():
|
|
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 |
)
|
|
|
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 |
)
|