ifisch commited on
Commit
429217d
·
verified ·
1 Parent(s): c0df20e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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