Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -69,7 +69,7 @@ st.title("Coloring Book Generator")
|
|
69 |
st.markdown("<h2 style='text-align: center; color: #888;'>By Taizun</h2>", unsafe_allow_html=True)
|
70 |
|
71 |
# Add a header image
|
72 |
-
st.image("https://your-image-link.com",
|
73 |
|
74 |
# Prompt input from user
|
75 |
prompt = st.text_input("Enter your Prompt", value="A cute Lion")
|
@@ -87,7 +87,7 @@ if style_name:
|
|
87 |
selected_style_negative_prompt = selected_entry["negative_prompt"]
|
88 |
|
89 |
# Button for image generation
|
90 |
-
if st.button("Generate
|
91 |
with st.spinner("Generating your awesome image..."):
|
92 |
pipeline = load_pipeline(select_lora)
|
93 |
if select_lora == "None":
|
|
|
69 |
st.markdown("<h2 style='text-align: center; color: #888;'>By Taizun</h2>", unsafe_allow_html=True)
|
70 |
|
71 |
# Add a header image
|
72 |
+
st.image("https://your-image-link.com", use_container_width=True) # Replace with your image URL or local path
|
73 |
|
74 |
# Prompt input from user
|
75 |
prompt = st.text_input("Enter your Prompt", value="A cute Lion")
|
|
|
87 |
selected_style_negative_prompt = selected_entry["negative_prompt"]
|
88 |
|
89 |
# Button for image generation
|
90 |
+
if st.button("Generate Image"):
|
91 |
with st.spinner("Generating your awesome image..."):
|
92 |
pipeline = load_pipeline(select_lora)
|
93 |
if select_lora == "None":
|