ale-dp commited on
Commit
11fbe38
1 Parent(s): f3e80e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -22,12 +22,16 @@ st.set_page_config(
22
 
23
  # Add a logo at the top middle of the app
24
  logo_path = "ale.png"
25
- logo_html = f'<div style="text-align:center;"><img src="ale.png" width="300"></div>'
26
  st.markdown(logo_html, unsafe_allow_html=True)
27
 
28
  # Display the app name below the logo
29
  st.title("Dialog Summarizer App")
30
 
 
 
 
 
31
  # Create two columns layout using st.columns
32
  col1, col2 = st.columns(2)
33
 
 
22
 
23
  # Add a logo at the top middle of the app
24
  logo_path = "ale.png"
25
+ logo_html = f'<div style="text-align:center;"><img src="{logo_path}" width="200"></div>'
26
  st.markdown(logo_html, unsafe_allow_html=True)
27
 
28
  # Display the app name below the logo
29
  st.title("Dialog Summarizer App")
30
 
31
+ st.info("🖥️ Note: This application is running on CPU. Please be patient ⏳.")
32
+ st.markdown("This app summarizes dialogues. Enter a dialogue in the text area, and the generated summary will appear at the bottom. Keep the dialogues few sentences long for optimal results.")
33
+
34
+
35
  # Create two columns layout using st.columns
36
  col1, col2 = st.columns(2)
37