LRU1 commited on
Commit
c50abfa
·
1 Parent(s): 68fb125

avoid repetitive log placeholder

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ if run_btn and video_file:
32
  st.info("Processing started. This may take several minutes depending on video length …")
33
  # container for live log streaming
34
  log_container = st.container()
35
- log_placeholder = log_container.empty()
36
 
37
  # Run pipeline via subprocess to avoid blocking UI; capture logs
38
  with st.spinner("Running Lec2Note2 pipeline …"):
 
32
  st.info("Processing started. This may take several minutes depending on video length …")
33
  # container for live log streaming
34
  log_container = st.container()
35
+ log_placeholder = log_container.code("", language="bash", height=300)
36
 
37
  # Run pipeline via subprocess to avoid blocking UI; capture logs
38
  with st.spinner("Running Lec2Note2 pipeline …"):