Update app.py
Browse files
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.
|
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:
|