LordFarquaad42 commited on
Commit
b6539f4
1 Parent(s): e4e56af

input is now text area

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,7 +36,7 @@ with r_col:
36
 
37
  # input & response
38
  with l_col:
39
- user_question: str = st.text_input(
40
  "Enter your groovy questions here",
41
  on_change=on_enter,
42
  )
 
36
 
37
  # input & response
38
  with l_col:
39
+ user_question: str = st.text_area(
40
  "Enter your groovy questions here",
41
  on_change=on_enter,
42
  )