Spaces:
Running
Running
MVPilgrim
commited on
Commit
·
32118b6
1
Parent(s):
d33695d
8vcpu invalid instruction
Browse files
app.py
CHANGED
@@ -547,7 +547,9 @@ try:
|
|
547 |
help="Enter a prompt for the LLM. No special characters needed.")
|
548 |
|
549 |
with col2:
|
550 |
-
if st.session_state.spinGenMsg
|
|
|
|
|
551 |
st.session_state.spinGenMsg = False;
|
552 |
with st.spinner('Generating Completion (but slowly. 40+ seconds.)...'):
|
553 |
st.session_state.sysTAtext = st.session_state.sysTA
|
|
|
547 |
help="Enter a prompt for the LLM. No special characters needed.")
|
548 |
|
549 |
with col2:
|
550 |
+
if not st.session_state.spinGenMsg or st.session_state.spinGenMsg == False:
|
551 |
+
pass
|
552 |
+
else:
|
553 |
st.session_state.spinGenMsg = False;
|
554 |
with st.spinner('Generating Completion (but slowly. 40+ seconds.)...'):
|
555 |
st.session_state.sysTAtext = st.session_state.sysTA
|