Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -100,7 +100,7 @@ def main():
|
|
100 |
if st.button("Generate Tweet", key='generate', help="Click here to generate the tweet."):
|
101 |
prompt = st.session_state.get("prompt", "")
|
102 |
if len(prompt.split()) < 3:
|
103 |
-
st.warning("The prompt must consist of at least 3 words, and should be in one of the focus areas of the selected Party. (e.g AfD: immigration")
|
104 |
else:
|
105 |
tweet = generate_tweet(party, prompt)
|
106 |
|
|
|
100 |
if st.button("Generate Tweet", key='generate', help="Click here to generate the tweet."):
|
101 |
prompt = st.session_state.get("prompt", "")
|
102 |
if len(prompt.split()) < 3:
|
103 |
+
st.warning("The prompt must consist of at least 3 words, and should be in one of the focus areas of the selected Party. (e.g AfD: immigration, Grüne: evironment)")
|
104 |
else:
|
105 |
tweet = generate_tweet(party, prompt)
|
106 |
|