code-slicer commited on
Commit
a6b8884
·
verified ·
1 Parent(s): 223c13c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -1384,6 +1384,9 @@ def main():
1384
  init_session()
1385
  chat_container = st.container()
1386
 
 
 
 
1387
  if "chat_log" in st.session_state and st.session_state.chat_log:
1388
  replay_log(chat_container)
1389
 
 
1384
  init_session()
1385
  chat_container = st.container()
1386
 
1387
+ # ✅ 타자 효과 on/off 토글 (기본 ON)
1388
+ st.sidebar.toggle("타자 효과", value=True, key="typewriter_on")
1389
+
1390
  if "chat_log" in st.session_state and st.session_state.chat_log:
1391
  replay_log(chat_container)
1392