Spaces:
Sleeping
Sleeping
John Graham Reynolds
commited on
Commit
·
1acff41
1
Parent(s):
7e2c9a0
fix typo
Browse files
app.py
CHANGED
@@ -254,7 +254,7 @@ with main:
|
|
254 |
if prompt := st.chat_input("Type a message!", max_chars=5000):
|
255 |
handle_user_input(prompt)
|
256 |
st.markdown("\n") #add some space for iphone users
|
257 |
-
with st.container:
|
258 |
st.button('Give Feedback on Last Response', on_click=feedback)
|
259 |
|
260 |
with st.sidebar:
|
|
|
254 |
if prompt := st.chat_input("Type a message!", max_chars=5000):
|
255 |
handle_user_input(prompt)
|
256 |
st.markdown("\n") #add some space for iphone users
|
257 |
+
with st.container():
|
258 |
st.button('Give Feedback on Last Response', on_click=feedback)
|
259 |
|
260 |
with st.sidebar:
|