andreska commited on
Commit
a87a225
·
verified ·
1 Parent(s): 3f83288

Fix syntax error

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -43,7 +43,7 @@ st.markdown(
43
  )
44
 
45
  # Define the placeholder globally (outside columns)
46
- if('conversation' not in st.session_state)
47
  placeholder = st.empty()
48
  placeholder.markdown(f'<div class="scrollable-div"><p>Welcome! I am your Adrega AI assistant</p></div>', unsafe_allow_html=True)
49
 
 
43
  )
44
 
45
  # Define the placeholder globally (outside columns)
46
+ if('conversation' not in st.session_state):
47
  placeholder = st.empty()
48
  placeholder.markdown(f'<div class="scrollable-div"><p>Welcome! I am your Adrega AI assistant</p></div>', unsafe_allow_html=True)
49