Commit ·
d8779d7
1
Parent(s): 52d0f09
Update app.py
Browse files
app.py
CHANGED
|
@@ -24,9 +24,9 @@ st.write("- Stay tuned for **exciting future features** that will enhance your p
|
|
| 24 |
|
| 25 |
# Presentation Limits section
|
| 26 |
st.header("Presentation Limits")
|
| 27 |
-
st.write("✨ You can create a minimum of
|
| 28 |
-
st.write("✨ Each slide should have between
|
| 29 |
-
st.write("✨ Minimum
|
| 30 |
|
| 31 |
# Important Notice
|
| 32 |
st.warning("⚠️ Important Notice: Occasional download issues? Try re-downloading or reach out to us for assistance. We apologize for any inconvenience.")
|
|
@@ -38,9 +38,9 @@ st.write("Your feedback is invaluable in making your experience the best it can
|
|
| 38 |
|
| 39 |
# Input for presentation topic
|
| 40 |
presentation_title = st.text_input("Enter your presentation topic:")
|
| 41 |
-
no_of_pages = st.number_input("Number of slides you want", min_value=
|
| 42 |
-
least_c = st.number_input("Minimum points in each slide", min_value=
|
| 43 |
-
max_c = st.number_input("Maximum points in each slide", min_value=
|
| 44 |
|
| 45 |
if st.button("Generate Presentation"):
|
| 46 |
# Check if the user has entered a topic
|
|
|
|
| 24 |
|
| 25 |
# Presentation Limits section
|
| 26 |
st.header("Presentation Limits")
|
| 27 |
+
st.write("✨ You can create a minimum of 2 and a maximum of 8 slides per presentation.")
|
| 28 |
+
st.write("✨ Each slide should have between 2 and 7 points of content.")
|
| 29 |
+
st.write("✨ Minimum 2 points, maximum 7 points. ⚠️")
|
| 30 |
|
| 31 |
# Important Notice
|
| 32 |
st.warning("⚠️ Important Notice: Occasional download issues? Try re-downloading or reach out to us for assistance. We apologize for any inconvenience.")
|
|
|
|
| 38 |
|
| 39 |
# Input for presentation topic
|
| 40 |
presentation_title = st.text_input("Enter your presentation topic:")
|
| 41 |
+
no_of_pages = st.number_input("Number of slides you want", min_value=2, max_value=8, value=2)
|
| 42 |
+
least_c = st.number_input("Minimum points in each slide", min_value=2, max_value=7, value=2)
|
| 43 |
+
max_c = st.number_input("Maximum points in each slide", min_value=2, max_value=7, value=7)
|
| 44 |
|
| 45 |
if st.button("Generate Presentation"):
|
| 46 |
# Check if the user has entered a topic
|