AnishaG0201 commited on
Commit
7fb5dd6
1 Parent(s): 95ffec8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -12,7 +12,8 @@ def generate_linkedin_post(topic):
12
  response = llm(prompt)
13
  return response
14
 
15
- with st.form("my_form"): topic = st.text_area("Ask me any question")
 
16
 
17
  submitted = st.form_submit_button("Generate Post")
18
  if submitted and topic:
 
12
  response = llm(prompt)
13
  return response
14
 
15
+ with st.form("my_form"):
16
+ topic = st.text_area("Ask me any question")
17
 
18
  submitted = st.form_submit_button("Generate Post")
19
  if submitted and topic: