Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -51,11 +51,12 @@ st.markdown('<div class="title-container"><h1>AI Title Generator</h1></div>', un
|
|
51 |
|
52 |
# Input bar for user prompt
|
53 |
user_input = st.text_area(
|
54 |
-
|
55 |
placeholder="e.g., Master AI For Future Jobs"
|
56 |
)
|
57 |
|
58 |
|
|
|
59 |
if st.button("Generate Titles", use_container_width=True):
|
60 |
if user_input.strip():
|
61 |
with st.spinner("Generating... Please wait!"):
|
|
|
51 |
|
52 |
# Input bar for user prompt
|
53 |
user_input = st.text_area(
|
54 |
+
label="", # Required but can be empty
|
55 |
placeholder="e.g., Master AI For Future Jobs"
|
56 |
)
|
57 |
|
58 |
|
59 |
+
|
60 |
if st.button("Generate Titles", use_container_width=True):
|
61 |
if user_input.strip():
|
62 |
with st.spinner("Generating... Please wait!"):
|