Spaces:
Sleeping
Sleeping
Fix syntax error
Browse files
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 |
|