Update app.py
Browse files
app.py
CHANGED
@@ -68,6 +68,17 @@ def generate_content(image):
|
|
68 |
return caption, story, temp_file_path
|
69 |
|
70 |
# Streamlit UI for the application
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
st.title("✨ Magic Story Maker ✨")
|
72 |
st.markdown("Upload a picture to make a funny story and hear it too! 📸")
|
73 |
|
|
|
68 |
return caption, story, temp_file_path
|
69 |
|
70 |
# Streamlit UI for the application
|
71 |
+
st.markdown(
|
72 |
+
"""
|
73 |
+
<style>
|
74 |
+
.stApp {
|
75 |
+
background: linear-gradient(to right, #ff7e5f, #feb47b);
|
76 |
+
}
|
77 |
+
</style>
|
78 |
+
""",
|
79 |
+
unsafe_allow_html=True
|
80 |
+
)
|
81 |
+
|
82 |
st.title("✨ Magic Story Maker ✨")
|
83 |
st.markdown("Upload a picture to make a funny story and hear it too! 📸")
|
84 |
|