AnishaG0201 commited on
Commit
b5076ca
1 Parent(s): 8e428da

Update app.py

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