Update app.py
Browse files
app.py
CHANGED
|
@@ -65,4 +65,10 @@ with col1:
|
|
| 65 |
# Process results on button click
|
| 66 |
if generate_button and website_info:
|
| 67 |
messages = initial_messages.copy()
|
| 68 |
-
st
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
# Process results on button click
|
| 66 |
if generate_button and website_info:
|
| 67 |
messages = initial_messages.copy()
|
| 68 |
+
st.session_state["reply"] = generate_marketing_plan(website_info, industry, goals, budget, messages)
|
| 69 |
+
|
| 70 |
+
# Display results if there is a reply in session state
|
| 71 |
+
if st.session_state["reply"]:
|
| 72 |
+
with col2:
|
| 73 |
+
st.markdown("<h2 style='text-align: center; color: black;'>Your 2025 Marketing Plan ⬇️</h2>", unsafe_allow_html=True)
|
| 74 |
+
st.write(st.session_state["reply"])
|