BigSalmon commited on
Commit
6ac2f76
·
verified ·
1 Parent(s): a15b002

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -44,8 +44,8 @@ if api_key:
44
  generation_config=generation_config,
45
  )
46
 
47
- # Input text box
48
- user_input = st.text_input("Enter your input:")
49
 
50
  if st.button("Generate"):
51
  if user_input:
 
44
  generation_config=generation_config,
45
  )
46
 
47
+ # Input text box (now using text_area instead of text_input)
48
+ user_input = st.text_area("Enter your input:", height=150)
49
 
50
  if st.button("Generate"):
51
  if user_input: