Update app.py
Browse files
app.py
CHANGED
|
@@ -62,7 +62,7 @@ with generative:
|
|
| 62 |
|
| 63 |
with chat:
|
| 64 |
st.title("AI Chat")
|
| 65 |
-
messages = st.container(height=
|
| 66 |
prompt_gpt = st.chat_input("Ask something")
|
| 67 |
if prompt_gpt:
|
| 68 |
user_msg = messages.chat_message("user").write(prompt_gpt)
|
|
|
|
| 62 |
|
| 63 |
with chat:
|
| 64 |
st.title("AI Chat")
|
| 65 |
+
messages = st.container(height=600)
|
| 66 |
prompt_gpt = st.chat_input("Ask something")
|
| 67 |
if prompt_gpt:
|
| 68 |
user_msg = messages.chat_message("user").write(prompt_gpt)
|