geoffrey-rathinapandi_tmna commited on
Commit
9074b15
1 Parent(s): 06cca68

text area instead of text input

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -106,7 +106,7 @@ def main(title = "LegaWeaver".upper()):
106
  unsafe_allow_html=True)
107
 
108
 
109
- text_message = st.text_input("Input your legal document here !")
110
  if st.button("Summarize"):
111
 
112
  info =model.generate_text(prompt=" ".join([instruction, text_message, "\n\nsummary: "]))
 
106
  unsafe_allow_html=True)
107
 
108
 
109
+ text_message = st.text_area("Input your legal document here !")
110
  if st.button("Summarize"):
111
 
112
  info =model.generate_text(prompt=" ".join([instruction, text_message, "\n\nsummary: "]))