abhisheky127 commited on
Commit
a6d6e02
1 Parent(s): 89fa82a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ text = st.text_area('Text to Summarize', '''''')
32
  if st.button('Summarize'):
33
  if len(product) and len(type) and len(text):
34
  with st.spinner(
35
- "Summarizing your feedback : `{}` ".format(query)
36
  ):
37
  text = "<product>{}</product><type>{}</type><text>{}</text>".format(product, type, text)
38
 
 
32
  if st.button('Summarize'):
33
  if len(product) and len(type) and len(text):
34
  with st.spinner(
35
+ "Summarizing your feedback : `{}` ".format(text)
36
  ):
37
  text = "<product>{}</product><type>{}</type><text>{}</text>".format(product, type, text)
38