Update app.py
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ if prompt := st.chat_input("Ask Palm 2 anything..."):
|
|
62 |
st.markdown(response['content'])
|
63 |
|
64 |
if response['code']:
|
65 |
-
if st.button('Run Code')
|
66 |
with st.status("Running code..."):
|
67 |
try:
|
68 |
exec(response['code'])
|
|
|
62 |
st.markdown(response['content'])
|
63 |
|
64 |
if response['code']:
|
65 |
+
if st.button('Run Code'):
|
66 |
with st.status("Running code..."):
|
67 |
try:
|
68 |
exec(response['code'])
|