Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -91,6 +91,9 @@ styles_dict = {entry["name"]: entry for entry in table}
|
|
| 91 |
# Streamlit UI
|
| 92 |
st.title("Image Generation")
|
| 93 |
|
|
|
|
|
|
|
|
|
|
| 94 |
# User input for the custom prompt
|
| 95 |
prompt = st.text_input("Enter your Prompt")
|
| 96 |
|
|
@@ -112,8 +115,3 @@ if st.button("Generate Awesome Image"):
|
|
| 112 |
image = image_generation(pipeline, prompt + selected_style_prompt, selected_style_negative_prompt)
|
| 113 |
if image:
|
| 114 |
st.image(image)
|
| 115 |
-
|
| 116 |
-
# Credit section
|
| 117 |
-
st.sidebar.markdown("### Made by Taizun")
|
| 118 |
-
st.sidebar.markdown("A creative AI-powered image generator app.")
|
| 119 |
-
st.sidebar.markdown("Explore various styles and generate unique artworks!")
|
|
|
|
| 91 |
# Streamlit UI
|
| 92 |
st.title("Image Generation")
|
| 93 |
|
| 94 |
+
# Display credit after the title in smaller font
|
| 95 |
+
st.markdown("<h3 style='font-size: 18px;'>Made by Taizun</h3>", unsafe_allow_html=True)
|
| 96 |
+
|
| 97 |
# User input for the custom prompt
|
| 98 |
prompt = st.text_input("Enter your Prompt")
|
| 99 |
|
|
|
|
| 115 |
image = image_generation(pipeline, prompt + selected_style_prompt, selected_style_negative_prompt)
|
| 116 |
if image:
|
| 117 |
st.image(image)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|